我正在将图像上传到 firebase。它在 Android 上运行良好,但在 iOS 中会出现运行时错误并且应用程序崩溃。
这是导致错误的代码:
appCheck = ComponentType<AppCheckInterop>.instance(for: AppCheckInterop.self,
in: app.container)!
错误是:
FirebaseStorage/Storage.swift:294:致命错误:在解包可选值时意外发现 nil
在 Firebase 上上传图像而不导致应用程序崩溃的解决方案
我已经找到解决办法了
添加:'等待 FirebaseAppCheck.instance.activate();' 在你的主要
对我有用