致命错误:在展开可选值时意外发现nil(之前:" Hello Firebase",之后:textView.text

时间:2016-12-03 10:44:45

标签: swift swift3 optional

我正在使用firebase建立数据库。

@IBAction func addPost(_ sender: Any) {

    // Post the data to firebase
    ref?.child("Posts").childByAutoId().setValue("Hello Firebase")

    // Dismiss the popover
    presentingViewController?.dismiss(animated: true, completion: nil)
}

以上代码正常运行且like this

我将其更改为以下代码:

@IBAction func addPost(_ sender: Any) {

    // Post the data to firebase
    ref?.child("Posts").childByAutoId().setValue(textView.text)

    // Dismiss the popover
    presentingViewController?.dismiss(animated: true, completion: nil)
}

更改后我得到:

  

"致命错误:在展开可选值时意外发现nil"   错误发生....

我该如何解决?

0 个答案:

没有答案