解决方法 您可能错过了在AppDelegate中添加此方法If app delegate swizzling is Disabled,remote notifications received by UIApplicationDelegate need to be forwarded to FIRAuth\’s canHandleNotificaton: method.
func application(_ application: UIApplication,dIDReceiveRemoteNotification notification: [AnyHashable : Any],fetchCompletionHandler completionHandler: @escaPing (UIBackgroundFetchResult) -> VoID) { if Auth.auth().canHandleNotification(notification) { completionHandler(.noData) return } // This notification is not auth related,developer should handle it. handleNotification(notification)}总结
以上是内存溢出为你收集整理的ios – Swift中的FireBase PhoneNumber验证错误全部内容,希望文章能够帮你解决ios – Swift中的FireBase PhoneNumber验证错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)