11

当我尝试登录或注册 Firebase 时,出现错误

2018-09-20 10:59:15.502959+0300 app[1980:18396] TIC Read Status [3:0x0]: 1:57
2018-09-20 10:59:15.503055+0300 app[1980:18396] TIC Read Status [3:0x0]: 1:57
2018-09-20 11:00:45.911678+0300 app[1980:18396] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C2.1:2][0x7fb1b5810f40] get output frames failed, state 8196
2018-09-20 11:00:45.911833+0300 app[1980:18396] [BoringSSL] nw_protocol_boringssl_get_output_frames(1301) [C2.1:2][0x7fb1b5810f40] get output frames failed, state 8196

由于此错误,以下代码块不起作用。

Auth.auth().createUser(withEmail: emailTxt.text, password: passwordTxt.text) { (result, error) in
   if let _eror = error {
      print(_eror.localizedDescription )
   } else {
      //...
   }
}

我使用新的 Xcode 10,swift 4.2。

4

1 回答 1

1

我也有同样的问题。这绝对是 iOS12 的问题,而 iOS11 中没有。我知道这是一件简单的事情,打折或根本不考虑,但我刚刚对项目中的 Pod 进行了 Pod 更新,现在错误已经消失。并不是说这是一个修复,但它已经消除了错误。

于 2018-09-25T02:22:16.320 回答