我试图引用UITextField
的文字,以便我可以在我的应用中的不同位置使用它。
@IBOutlet weak var mealNameUITextField: UITextField!
@IBAction func nextButton(sender: AnyObject) {
mealNameBeingCreated = String(mealNameUITextField.text)
print(mealNameBeingCreated)
}
它给了我错误:
致命错误:在解包可选值时意外发现nil
有人能告诉我参考文本的正确方法吗?另外,我可能会提到我想在全局变量中使用此信息。
答案 0 :(得分:1)
就这样写:
@IBAction func nextButton(sender: AnyObject) {
let mealNameBeingCreated : String = mealNameUITextField.text!
print(mealNameBeingCreated)
}
答案 1 :(得分:1)
@IBAction func nextButton(sender: AnyObject) {
let mealNameBeingCreated:String = self.mealNameUITextfield.text!
print(mealNameBeingCreated)
}
OR
@IBAction func nextButton(sender: AnyObject) {
let mealNameBeingCreated = self.mealNameUITextfield.text!
print(mealNameBeingCreated)
}
textfield返回的值是可选的,我们必须使用"!" 符号
打开它语法取决于您正在使用的Swift语言的版本。我正在使用支持swift 2.1.1的XCode 7.2