我想要写个点击 button,然后弹出一个提示框的功能
let alertController = UIAlertController(title: "系统提示", message: "123 ?", preferredStyle: .alert) let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler: nil) let okAction = UIAlertAction(title: "好的", style: .default, handler: { action in print("点击了确定") }) alertController.addAction(cancelAction) alertController.addAction(okAction) self.present(alertController, animated: true, completion: nil) }
有几处不理解的地方,请赐教~~谢谢大家。 1、handler: { action in print("点击了确定") 首先 handler:nil 是什么意思哦?如果后面加了 action...,又代表什么呢? 2、self.present 代表的是将这些常量输出出来吗? 3、completion: nil,代表执行完成以后不做任何操作嘛?