如何在Swift中引用UITextField的文本?

时间:2015-12-31 07:17:51

标签: ios swift

我试图引用UITextField的文字,以便我可以在我的应用中的不同位置使用它。

@IBOutlet weak var mealNameUITextField: UITextField!

@IBAction func nextButton(sender: AnyObject) {

    mealNameBeingCreated = String(mealNameUITextField.text)
    print(mealNameBeingCreated)

}

它给了我错误:

  

致命错误:在解包可选值时意外发现nil

有人能告诉我参考文本的正确方法吗?另外,我可能会提到我想在全局变量中使用此信息。

2 个答案:

答案 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