防止解雇UIAlertController

防止解雇UIAlertController,第1张

防止解雇UIAlertController

您是正确的:如果用户可以点击警报中的按钮,则警报将被关闭。因此,您要防止用户点击按钮!只需禁用UIalertAction按钮即可。如果禁用了警报 *** 作,则用户无法点击它以将其关闭。

要将其与文本字段验证结合使用,请使用文本字段委托方法或 *** 作方法(在创建时在文本字段的配置处理程序中配置),以根据输入(或未输入)文本适当地启用/禁用UIalertActions

这是一个例子。我们创建了这样的文本字段:

alert.addTextFieldWithConfigurationHandler {    (tf:UITextField!) in    tf.addTarget(self, action: "textChanged:", forControlEvents: .EditingChanged)}

我们有一个“取消” *** 作和一个“确定” *** 作,并将“确定” *** 作带入了残疾人世界:

(alert.actions[1] as UIalertAction).enabled = false

随后,除非文本字段中有一些实际的文本,否则用户无法点击“确定”:

func textChanged(sender:AnyObject) {    let tf = sender as UITextField    var resp : UIResponder = tf    while !(resp is UIalertController) { resp = resp.nextResponder() }    let alert = resp as UIalertController    (alert.actions[1] as UIalertAction).enabled = (tf.text != "")}

编辑 这是上述代码的当前(Swift 3.0.1及更高版本)版本:

alert.addTextField { tf in    tf.addTarget(self, action: #selector(self.textChanged), for: .editingChanged)}

alert.actions[1].isEnabled = false

@objc func textChanged(_ sender: Any) {    let tf = sender as! UITextField    var resp : UIResponder! = tf    while !(resp is UIalertController) { resp = resp.next }    let alert = resp as! UIalertController    alert.actions[1].isEnabled = (tf.text != "")}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5126609.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存