Swift下弹出对话框

前端之家收集整理的这篇文章主要介绍了Swift下弹出对话框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//对话框控制器
            let alertController = UIAlertController(title: "提示",message: "数字不能为空",preferredStyle: UIAlertControllerStyle.Alert)
            //点击按钮动作
            let canCelAction = UIAlertAction(title: "取消",style: UIAlertActionStyle.Cancel,handler: { (UIAlertAction) -> Void in print("取消操作") }) let okAction = UIAlertAction(title: "确定",style: UIAlertActionStyle.Default,handler:nil) alertController.addAction(canCelAction) alertController.addAction(okAction) self.presentViewController(alertController,animated:true,completion:nil)
原文链接:https://www.f2er.com/swift/325287.html

猜你在找的Swift相关文章