gpt4 book ai didi

iphone - 如何验证 IBOutlet/var 是否为 nil?

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:40 24 4
gpt4 key购买 nike

我使用 Swift 和 Xcode 6.1.1 编写了一个简单的应用程序。该程序是一个简单的计算器,运行良好,但我无法验证三个文本字段的非零输入。因此,如果用户将该字段留空然后点击“计算”,应用程序就会崩溃。

该应用接受三个输入,最初是字符串。我写了一个 if 语句来检查 nil 但它不起作用 - 无论如何它都会传递给 else。这是与我的问题相关的代码块:

...
@IBOutlet var calcButton: UIBarButtonItem!
@IBOutlet var yearOneField: UITextField!
@IBOutlet var yearTwoField: UITextField!
@IBOutlet var yearThreeField: UITextField!
@IBOutlet var displayWindow: UILabel!

@IBAction func calcButtonTapped(sender: AnyObject) {

if (yearOneField == nil) {

displayWindow.text = ("Non-zero entries are not permitted. Please enter new values.")

} else {

let yearOne = yearOneField.text.toInt()
let yearTwo = yearTwoField.text.toInt()
let yearThree = yearThreeField.text.toInt()
...

我在想我可以评估 IBOutlet 为 nil,但那没有用。我是 Swift 和 Xcode 的新手,所以我希望这对那里更有经验的开发人员来说是一个 n00b 问题。谢谢。

最佳答案

如果您忘记在 Interface Builder 中连接它们,@IBOutlet 可能为 nil 的唯一方法。通常您不需要检查它,因为崩溃会告诉您解决该问题。

toInt() 函数返回一个 Optional Int(又名 Int?),在使用前必须解包。如果文本字段中的值不代表有效的 InttoInt() 将返回 nil。如果使用 toInt() 转换,“2.1”、“seven”和“”都将返回 nil。我建议您使用可选绑定(bind) (if let) 语法来检查 nil 的转换,如果不是 nil,则打开结果:

if let yearOne = yearOneField.text.toInt() {
if let yearTwo = yearTwoField.text.toInt() {
if let yearThree = yearThreeField.text.toInt() {
// yearOne, yearTwo, and yearThree are all valid Ints
// so do the calculations
}
}
}

或者,如果您知道要在字段无法转换为 Int 时使用默认值(如 0),则可以解包结果使用 nil 合并运算符 ?? 像这样:

let yearOne = yearOneField.text.toInt() ?? 0
let yearTwo = yearTwoField.text.toInt() ?? 0
let yearThree = yearThreeField.text.toInt() ?? 0

关于iphone - 如何验证 IBOutlet/var 是否为 nil?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28920678/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com