42

我正在 Xcode 中配置一个新的 Firebase 应用程序,但在控制台中重复打印“nw_connection_receive_internal_block_invoke [C1] Receive reply failed with error 'Operation cancelled'”。我应该怎么做才能解决这个问题?

这是在 Xcode 11 Beta 3 中,我已经尝试完全创建一个新项目,因为原始项目是从旧版本的 Xcode 创建的,但即使我所做的只是运行,我仍然会在控制台中重复打印此错误配置后一次。

我希望在控制台中看不到任何错误,但是这个错误被打印了很多次。

4

2 回答 2

1

我遇到了同样的错误。我的代码如下所示:

UserServices().getUserWithUID(uid: user.uid) { (user) in
    self.window?.rootViewController = MapViewController(user: user)
    self.window?.makeKeyAndVisible()
}

我为解决问题所做的只是将我的代码更改为:

let userServices = UserServices()
userServices.getUserWithUID(uid: user.uid) { (user) in
    self.window?.rootViewController = MapViewController(user: user)
    self.window?.makeKeyAndVisible()
}

控制台错误消失了。

于 2019-10-25T10:43:51.303 回答
0

我发现,在我插入密码后,这个弹出的字符更少。不知何故,Firebase 至少需要六个字母,而我尝试使用三个。

于 2019-09-23T12:58:03.730 回答