8

我们,因为我们使用的Xcode 8和OS 10.在我们的应用有一定的麻烦与火力地堡推送通知功能,我们要求用户启用的第二次发射应用的推送通知,但第一后10秒后(和下一个)启动,它与此日志崩溃:推送通知火力地堡导致崩溃

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 
'-[FIRInstanceIDConfig setAllowGCMRegistrationWithoutAPNSToken:]: unrecognized selector sent to instance 0x170207740' 

我们也尝试禁用swizzling,但问题再次发生。

谁能告诉我们,我们要去的地方错了?

火力地堡的AppDelegate代码:

#pragma mark - Notification 
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { 
    UALog(@"success to register notification"); 
#ifdef DEBUG 
    [[FIRInstanceID instanceID] setAPNSToken:deviceToken 
             type:FIRInstanceIDAPNSTokenTypeSandbox]; 
#else 
    [[FIRInstanceID instanceID] setAPNSToken:deviceToken 
             type:FIRInstanceIDAPNSTokenTypeProduction]; 
#endif 
} 

推送通知要求:

if ([popUpViewController isKindOfClass:[GSPushNotificationsPopupViewController class]]) { 
    [[NSUserDefaults standardUserDefaults] setBool:YES forKey:NSUD_ALREADY_DISPLAYED_NOTIF_MESSAGE]; 
    if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_9_x_Max) { 
     UIUserNotificationType allNotificationTypes = (UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge); 
     UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:allNotificationTypes categories:nil]; 
     [[UIApplication sharedApplication] registerUserNotificationSettings:settings]; 
    } else { 
     // iOS 10 or later 
     UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge; 
     [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) { 

     }]; 

     // For iOS 10 display notification (sent via APNS) 
     [[UNUserNotificationCenter currentNotificationCenter] setDelegate:self]; 
     // For iOS 10 data message (sent via FCM) 
     [[FIRMessaging messaging] setRemoteMessageDelegate:self]; 
    } 
} 
+0

也有这个问题。你有没有想出解决方案? – Tander

回答

1

您已经添加了您的应用程序的其他连接标志来-ObjC?您可以通过点击做到这一点:项目名称 - >构建设置 - >其它链接器标记

enter image description here