前端之家收集整理的这篇文章主要介绍了
Swift 3.0 UIAlertController的使用,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Swift 3.0 UIAlertController的使用,代码如下:
let alert = UIAlertController.init(title: "提示",message: "我是弹框..",preferredStyle: .alert)
alert.addAction(UIAlertAction.init(title: "取消",style: .cancel,handler: nil))
self.present(alert,animated: true) {
}
原文链接:https://www.f2er.com/swift/322682.html