Swift基础之对话框UIAlertController

   var alertController=UIAlertController(title: "标题", message: "这是一个UIAlertController的默认样式", preferredStyle: UIAlertControllerStyle.Alert)

        var cancelAction=UIAlertAction(title: "取消", style: UIAlertActionStyle.Cancel, handler:{

            (alerts:UIAlertAction!)->Void in

            print("点击啦取消")

        

        })

        var okAction=UIAlertAction(title: "好的", style: UIAlertActionStyle.Default, handler:

          {

                  (alerts: UIAlertAction!) ->Void in

            print("点击啦好的")

            })

        alertController .addAction(cancelAction)

        alertController.addAction(okAction)

        self.presentViewController(alertController,animated:true,completion:nil)

你可能感兴趣的:(swift,ios开发,对话框)