加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Swift-->UIAlertController(对话框)的使用

发布时间:2020-12-14 06:48:20 所属栏目:百科 来源:网络整理
导读:在IOS 8.0之后,UIAlertView 和 UIActionSheet 已经被废弃了. 取而代之的是UIAlertController 阅读之前,你需要具有Swift语法基础,至少要能看懂闭包以及结尾闭包. 下图是UIAlertControllerStyle.Alert (UIAlertView)样式的截图: 下图就是UIAlertControllerStyl

在IOS 8.0之后,UIAlertView 和 UIActionSheet 已经被废弃了. 取而代之的是UIAlertController

阅读之前,你需要具有Swift语法基础,至少要能看懂闭包以及结尾闭包.


下图是UIAlertControllerStyle.Alert (UIAlertView)样式的截图:

下图就是UIAlertControllerStyle.ActionSheet (UIActionSheet)样式的截图:

看了效果图,接下来就上代码了.

//第一个参数是标题,第二个参数是消息内容,第三个参数就是上2张图中的样式,随便选一个.
    let alertViewController = UIAlertController(title: "title",message: "message",preferredStyle: .ActionSheet)

//如果没有调用addAction方法,对话框也是会显示的.但是没有可以点击的按钮.
    alertViewController.addAction(UIAlertAction(title: "title1",style: .Cancel,handler: { action in print("onAction") }))

//UIAlertAction的第二个参数是 按钮的样式(取消(粗体显示),消极(红色显示),正常)3种样式. 
//第三个参数是一个函数类型的参数. 表示点击按钮之后的调用的方法.
    alertViewController.addAction(UIAlertAction(title: "title2",style: .Default,handler: { action in
        print("1")
        print("2")
        })
    )
    alertViewController.addAction(UIAlertAction(title: "title3",style: .Default) { action in
        print("11")
        print("22")
        }
    )
    alertViewController.addAction(UIAlertAction(title: "title4",style: .Destructive,handler: nil))
//显示对话框
    self.presentViewController(alertViewController,animated: true,completion: nil)
}

向对话框中添加文本框:效果图

文本框可以添加多个

alertViewController.addTextFieldWithConfigurationHandler({ textField in print(textField.text);textField.text = "angcyo1" })
alertViewController.addTextFieldWithConfigurationHandler({ textField in print(textField.text);textField.text = "angcyo2" })
alertViewController.addTextFieldWithConfigurationHandler({ textField in print(textField.text);textField.text = "angcyo3" })

获取文本框的内容:

alertViewController.addAction(UIAlertAction(title: "title3",style: .Default) { action in
print("textFields:(alertViewController.textFields?[0].text)")
print("textFields:(alertViewController.textFields![1].text)")
for textFields in alertViewController.textFields! {
    print("textFields:(textFields.text)")
    }
  }
)

需要注意的是: 文本框只能在 UIAlertControllerStyle.Alert 样式下,才能添加.否则会报异常.


至此: 文章就结束了,如有疑问: QQ群 Android:274306954 Swift:399799363 欢迎您的加入.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读