Swift基础之对话框UIAlertController

前端之家收集整理的这篇文章主要介绍了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)

原文链接:https://www.f2er.com/swift/325290.html

猜你在找的Swift相关文章