我正在使用Firebase电话号码登录验证所有内容都很完美
1)供应资料
2)证书
3)签名方法启用
4)项目设置为.12文件
5)一切都应该完美
问题 当我使用此代码使用thins方法发送OTP的手机号码时
NSString *phoneNumber = @"+919428936703";
[[FIRPhoneAuthProvider provider]
verifyPhoneNumber:phoneNumber
completion:^(NSString * verificationID,
NSError * error) {
NSLog(@"VARIFICATION CODE %@", verificationID);
NSLog(@"Error %@", error);
if (!error){
}else{
}
}];
还可以获得通话方法
- (void)application:(UIApplication *)application
didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
// Pass device token to auth.
[[FIRAuth auth] setAPNSToken:deviceToken type:FIRAuthAPNSTokenTypeSandbox];
}
- (void)application:(UIApplication *)application
didReceiveRemoteNotification:(NSDictionary *)notification
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
NSLog(@"DATA OF AUTH %@", [FIRAuth auth]);
if ([[FIRAuth auth] canHandleNotification:notification]) {
NSLog(@"Handle by Firebase ");
completionHandler(UIBackgroundFetchResultNoData);
return;
}else{
NSLog(@"NOT HANDLE BY FIREBASE %@", notification);
}
}
然后在使用此错误日志崩溃后
-[__NSCFString setFir_authPhoneNumber:]: unrecognized selector sent to instance 0x166388b0
答案 0 :(得分:2)
看起来您没有将您的应用与-ObjC
链接器标记相关联,这是Integrate without CocoaPods的说明的一部分。
setFir_authPhoneNumber:
实现为category,因此必须使用-ObjC
链接器标志,否则库中的编译.o
将不会链接到您的应用二进制文件中。