111

我正在向UIAlertView用户展示一个,但我不知道如何编写处理程序。这是我的尝试:

let alert = UIAlertController(title: "Title",
                            message: "Message",
                     preferredStyle: UIAlertControllerStyle.Alert)

alert.addAction(UIAlertAction(title: "Okay",
                              style: UIAlertActionStyle.Default,
                            handler: {self in println("Foo")})

我在 Xcode 中遇到了很多问题。

文件说convenience init(title title: String!, style style: UIAlertActionStyle, handler handler: ((UIAlertAction!) -> Void)!)

目前,整个街区/封闭区有点超出我的想象。任何建议都非常感谢。

4

10 回答 10

172

而不是 self 在您的处理程序中,放入 (alert: UIAlertAction!)。这应该使您的代码看起来像这样

    alert.addAction(UIAlertAction(title: "Okay",
                          style: UIAlertActionStyle.Default,
                        handler: {(alert: UIAlertAction!) in println("Foo")}))

这是在 Swift 中定义处理程序的正确方法。

正如 Brian 在下面指出的,还有更简单的方法来定义这些处理程序。书中讨论了使用他的方法,请查看标题为闭包的部分

于 2014-06-12T17:25:33.340 回答
77

函数是 Swift 中的一等对象。因此,如果您不想使用闭包,也可以只定义一个具有适当签名的函数,然后将其作为handler参数传递。观察:

func someHandler(alert: UIAlertAction!) {
    // Do something...
}

alert.addAction(UIAlertAction(title: "Okay",
                              style: UIAlertActionStyle.Default,
                              handler: someHandler))
于 2015-03-14T21:27:24.027 回答
18

您可以使用 swift 2 像这样简单地做到这一点:

let alertController = UIAlertController(title: "iOScreator", message:
        "Hello, world!", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Destructive,handler: { action in
        self.pressed()
}))

func pressed()
{
    print("you pressed")
}

    **or**


let alertController = UIAlertController(title: "iOScreator", message:
        "Hello, world!", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Destructive,handler: { action in
      print("pressed")
 }))

以上所有答案都是正确的,我只是展示了另一种可以完成的方法。

于 2016-02-08T14:45:50.177 回答
11

假设您想要一个 UIAlertAction 主标题、两个操作(保存和丢弃)和取消按钮:

let actionSheetController = UIAlertController (title: "My Action Title", message: "", preferredStyle: UIAlertControllerStyle.ActionSheet)

    //Add Cancel-Action
    actionSheetController.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))

    //Add Save-Action
    actionSheetController.addAction(UIAlertAction(title: "Save", style: UIAlertActionStyle.Default, handler: { (actionSheetController) -> Void in
        print("handle Save action...")
    }))

    //Add Discard-Action
    actionSheetController.addAction(UIAlertAction(title: "Discard", style: UIAlertActionStyle.Default, handler: { (actionSheetController) -> Void in
        print("handle Discard action ...")
    }))

    //present actionSheetController
    presentViewController(actionSheetController, animated: true, completion: nil)

这适用于 swift 2(Xcode 版本 7.0 beta 3)

于 2015-07-18T18:01:58.583 回答
9

在斯威夫特 4 中:

let alert=UIAlertController(title:"someAlert", message: "someMessage", preferredStyle:UIAlertControllerStyle.alert )

alert.addAction(UIAlertAction(title: "ok", style: UIAlertActionStyle.default, handler: {
        _ in print("FOO ")
}))

present(alert, animated: true, completion: nil)
于 2018-05-22T07:09:00.610 回答
7

swift 3.0 中的语法变化

alert.addAction(UIAlertAction(title: "Okay",
                style: .default,
                handler: { _ in print("Foo") } ))
于 2017-07-15T02:24:53.290 回答
4

这就是我使用 xcode 7.3.1 的方式

// create function
func sayhi(){
  print("hello")
}

// 创建按钮

let sayinghi = UIAlertAction(title: "More", style: UIAlertActionStyle.Default, handler:  { action in
            self.sayhi()})

// 将按钮添加到警报控件

myAlert.addAction(sayhi);

// 整个代码,这段代码将添加 2 个按钮

  @IBAction func sayhi(sender: AnyObject) {
        let myAlert = UIAlertController(title: "Alert", message:"sup", preferredStyle: UIAlertControllerStyle.Alert);
        let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler:nil)

        let sayhi = UIAlertAction(title: "say hi", style: UIAlertActionStyle.Default, handler:  { action in
            self.sayhi()})

        // this action can add to more button
        myAlert.addAction(okAction);
        myAlert.addAction(sayhi);

        self.presentViewController(myAlert, animated: true, completion: nil)
    }

    func sayhi(){
        // move to tabbarcontroller
     print("hello")
    }
于 2016-10-10T00:51:03.480 回答
4

创建警报,在 xcode 9 中测试

let alert = UIAlertController(title: "title", message: "message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.default, handler: self.finishAlert))
self.present(alert, animated: true, completion: nil)

和功能

func finishAlert(alert: UIAlertAction!)
{
}
于 2017-10-05T07:34:22.077 回答
2
  1. 在斯威夫特

    let alertController = UIAlertController(title:"Title", message: "Message", preferredStyle:.alert)
    
    let Action = UIAlertAction.init(title: "Ok", style: .default) { (UIAlertAction) in
        // Write Your code Here
    }
    
    alertController.addAction(Action)
    self.present(alertController, animated: true, completion: nil)
    
  2. 在目标 C

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleAlert];
    
    UIAlertAction *OK = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action)
    {
    }];
    
    [alertController addAction:OK];
    
    [self presentViewController:alertController animated:YES completion:nil];
    
于 2018-05-22T07:24:52.020 回答
0

在 Swift 5 中,您还可以执行以下操作:

let handler = { (action: UIAlertAction!) -> Void in
    //do tasks
}

然后,当您进行操作时,只需将其替换为:

let action = UIAlertAction(title: "Do it", style: .default, handler: handler)
于 2021-07-11T15:30:33.747 回答