我正在使用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" 错误发生....
我该如何解决?