ios – 无法在关闭中找到成员

ios – 无法在关闭中找到成员,第1张

概述我有以下代码.提示是一个UIAlertController. self.presentViewController(prompt, animated: true, completion: { prompt.textFields[0].becomeFirstResponder()}) 但它给了我这个错误:无法找到成员’becomeFirstResponder’. 然而,如果我把它放在它的 我有以下代码.提示是一个UIAlertController.
self.presentVIEwController(prompt,animated: true,completion: {     prompt.textFIElds[0].becomeFirstResponder()})

但它给了我这个错误:无法找到成员’becomeFirstResponder’.

然而,如果我把它放在它的工作正常:

self.presentVIEwController(prompt,completion: {     let foo = 0     prompt.textFIElds[0].becomeFirstResponder()})

当我添加如上所述的无用代码行时,为什么错误会消失?

解决方法 根据关于If语句和强制解包的Swift编程语言一书的部分,

“You can use an if statement to find out whether an optional contains a value. If an optional does have a value,it evaluates to true; if it has no value at all,it evaluates to false.
Once you’re sure that the optional does contain a value,you can access its underlying value”

UIAlertController不必具有textFIEld,因为textFIElds数组是可选的,你必须先打开它才能调用数组内部对象的函数,所以看起来应该是这样的:

self.presentVIEwController(prompt,completion: {    if let textFIElds = prompt.textFIElds {       textFIElds[0].becomeFirstResponder()    }})
总结

以上是内存溢出为你收集整理的ios – 无法在关闭中找到成员全部内容,希望文章能够帮你解决ios – 无法在关闭中找到成员所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

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

原文地址: http://outofmemory.cn/web/1104151.html

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

发表评论

登录后才能评论

评论列表(0条)

保存