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

swift 的 UIAlertController使用

发布时间:2020-12-14 01:33:36 所属栏目:百科 来源:网络整理
导读:1.弹出带有取消和确定以及标题的alertController,并且附带UITextField @IBAction func testAlert(sender: AnyObject) { let alertController = UIAlertController(title: " 提示 ",message: " 哈哈哈,你懂的 ",preferredStyle:UIAlertControllerStyle.Aler

1.弹出带有取消和确定以及标题的alertController,并且附带UITextField

@IBAction func testAlert(sender: AnyObject) {

let alertController = UIAlertController(title: "提示",message: "哈哈哈,你懂的",preferredStyle:UIAlertControllerStyle.Alert);

let cancelAction = UIAlertAction(title: "取消",style: UIAlertActionStyle.Cancel) { (action : UIAlertAction) -> Void in

print("点击了取消按钮");

}

let confirmAction = UIAlertAction(title: "确定",style: UIAlertActionStyle.Default) { (action :UIAlertAction) -> Void in

print("点击了确定按钮");

}

alertController.addAction(cancelAction);

alertController.addAction(confirmAction);

alertController.addTextFieldWithConfigurationHandler { (textField : UITextField) -> Void in

//配合textField的代理方法使用

textField.placeholder = "请输入密码";

textField.secureTextEntry = true;

textField.tag = 111;

textField.delegate = self;

}

self.presentViewController(alertController,animated: true) { () -> Void in

print("已经弹出");

};

}

(编辑:李大同)

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

    推荐文章
      热点阅读