通过Push notification Objective C iOS从Kill状态打开时应用程序崩溃

通过Push notification Objective C iOS从Kill状态打开时应用程序崩溃,ios,objective-c,xcode,apple-push-notifications,Ios,Objective C,Xcode,Apple Push Notifications,我的应用在后台运行正常,点击推送通知打开。但若我终止应用程序并通过推送通知打开它,那个么应用程序就会崩溃。我还集成了Crashlytics。这里是附加的照片和代码。应用程序仅在一种类型的通知中崩溃。这不是数据解析问题 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { UNUserNotificationCent

我的应用在后台运行正常,点击推送通知打开。但若我终止应用程序并通过推送通知打开它,那个么应用程序就会崩溃。我还集成了Crashlytics。这里是附加的照片和代码。应用程序仅在一种类型的通知中崩溃。这不是数据解析问题

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
    [center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert)
                          completionHandler:^(BOOL granted, NSError * _Nullable error) {
                              if (!error) {
                                  NSLog(@"request authorization succeeded!");
                                  //[self showAlert];
                              }
                          }];




// Branch Intigration
    Branch *branch = [Branch getInstance];

//    if is debug
//    [[Branch getInstance] setDebug];


    [branch initSessionWithLaunchOptions:launchOptions andRegisterDeepLinkHandler:^(NSDictionary *params, NSError *error) {
        if (!error && params) {
            DecisionController * mainVC = [[DecisionController alloc] init];
            [mainVC viewDidLoad];
            // params are the deep linked params associated with the link that the user clicked -> was re-directed to this app
            // params will be empty if no data found
            // ... insert custom logic here ...
            NSString * non_branch_link  = [params objectForKey:@"+clicked_branch_link"];
            if ([[params objectForKey:@"+clicked_branch_link"] boolValue]) {
                NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
                [nc postNotificationName:@"DeepLinkNotification" object:self userInfo:params];
            }
            NSLog(@"params: %@", params.description);
        }
    }];

    // MAGICAL RECORD Intigration
    [MagicalRecord setupCoreDataStackWithAutoMigratingSqliteStoreNamed:@"EmergencMeDatabase.sqlite"];
//    [Fabric with:@[[branch class]]];
    NSLog(@"magical record path to SQLite base %@", [NSPersistentStore MR_defaultLocalStoreUrl]);
    [Fabric with:@[[Crashlytics class]]];

    [SharedRenderer setValue:@"NO" key:isForRedar];
    [[NSUserDefaults standardUserDefaults] setFloat:0 forKey:@"lastnotificationminute"];
    [[FBSDKApplicationDelegate sharedInstance] application:application
                             didFinishLaunchingWithOptions:launchOptions];
    [MPNotificationView registerNibNameOrClass:@"CustomNotificationView"
                        forNotificationsOfType:@"Custom"];
    [self registerForRemoteNotifications];
    [SharedRenderer sharedInstance].retryCount = 0;
    [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"generatenotification"];
    [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"FirstSubscribe"];
    mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone"
                                               bundle: nil];
    if (launchOptions[UIApplicationLaunchOptionsLocationKey]) {

        [self startLocationManager:@""];
    }
    if (![[NSUserDefaults standardUserDefaults] boolForKey:@"HasLaunchedOnce"])
    {
        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"HasLaunchedOnce"];
        [[NSUserDefaults standardUserDefaults] synchronize];
        [SharedRenderer setValue:@"0" key:@"alldatafetched"];
        [SharedRenderer setValue:@"" key:@"currentchannel"];
        NSMutableArray* alerts = [[NSMutableArray alloc] init];
        NSData* alertsData=[NSKeyedArchiver archivedDataWithRootObject:alerts];
        [[NSUserDefaults standardUserDefaults] setObject:alertsData forKey:@"nonreasonalerts"];
        NSMutableArray* receivedAlerts = [[NSMutableArray alloc] init];
        NSData* receivedAlertsData=[NSKeyedArchiver archivedDataWithRootObject:receivedAlerts];
        [[NSUserDefaults standardUserDefaults] setObject:receivedAlertsData forKey:@"receivedalerts"];
        NSMutableArray* myAlerts = [[NSMutableArray alloc] init];
        NSData* myAlertsData=[NSKeyedArchiver archivedDataWithRootObject:myAlerts];
        [[NSUserDefaults standardUserDefaults] setObject:myAlertsData forKey:@"myalerts"];
        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"OB"];
        [[NSUserDefaults standardUserDefaults] synchronize];
    }
    if (![[SharedRenderer getValueFor:@"isLogin"] boolValue])
    {
        navigationController = [mainStoryboard instantiateViewControllerWithIdentifier:@"loginVC"];
        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"showhomealert"];
    }
    else
    {
        if ([[SharedRenderer getValueFor:@"family_id"] isEqualToString:@""] || [[SharedRenderer getValueFor:@"alldatafetched"] isEqualToString:@"0"])
        {
            navigationController = [mainStoryboard instantiateViewControllerWithIdentifier:@"Smarticestep1"];
        }
        else
        {
            navigationController = [mainStoryboard instantiateViewControllerWithIdentifier:@"homenav"];
            [self activatedeacAlertTimer];
            [self activatePendingAlertTimer];
            [self checkFor_AlertDeactivation];
            [self fetchInvitationCount];
            // Mark by Mian:
            //            [self updatePSAlertTable];
        }
    }
    [self.window setRootViewController: navigationController];
    [self.window makeKeyAndVisible];
    LeftMenuViewController *leftMenu = (LeftMenuViewController*)[mainStoryboard
                                                                 instantiateViewControllerWithIdentifier: @"LeftMenuViewController"];
    RightMenuViewController *rightMenu = (RightMenuViewController*)[mainStoryboard
                                                                    instantiateViewControllerWithIdentifier: @"RightMenuViewController"];
    [SlideNavigationController sharedInstance].rightMenu = rightMenu;
    [SlideNavigationController sharedInstance].leftMenu = leftMenu;
    [SlideNavigationController sharedInstance].menuRevealAnimationDuration = .4;

    // Creating a custom bar button for right menu
    UIButton *button  = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 30, 30)];
    [button setImage:[UIImage imageNamed:@"gear"] forState:UIControlStateNormal];
    [button addTarget:[SlideNavigationController sharedInstance] action:@selector(toggleRightMenu) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
    [SlideNavigationController sharedInstance].rightBarButtonItem = rightBarButtonItem;
    [[NSNotificationCenter defaultCenter] addObserverForName:SlideNavigationControllerDidClose object:nil queue:nil usingBlock:^(NSNotification *note)
     {
         //         NSString *menu = note.userInfo[@"menu"];
     }];

    [[NSNotificationCenter defaultCenter] addObserverForName:SlideNavigationControllerDidOpen object:nil queue:nil usingBlock:^(NSNotification *note)
     {
         //         NSString *menu = note.userInfo[@"menu"];
     }];

    [[NSNotificationCenter defaultCenter] addObserverForName:SlideNavigationControllerDidReveal object:nil queue:nil usingBlock:^(NSNotification *note)
     {
         //         NSString *menu = note.userInfo[@"menu"];
     }];
    [self ConnectPusher];
    if ([[SharedRenderer getValueFor:@"isLogin"] boolValue]){
        [self checkFor_AlertDeactivation];
        [self removePastAlert];
        [self deactivateAlert];
        [self goOnline_Offline:@"1"];
    }
    [self showAlert:launchOptions];
    return YES;
}

问题是,您从
启动选项
中获得打开应用程序的通知,该通知使用选项
方法完成启动,并在应用程序打开时传递给处理该通知的相同功能,并执行推送/呈现,该推送/呈现会导致应用程序崩溃,因为尚未设置windows的根视图控制器,因此,请延迟,直到应用程序处于活动状态为止

您可能想要共享一些代码…@Daanlemen请查看我的更新问题我收到了不同类型的通知。一切正常。但有一个例子就是应用程序崩溃。你解决了这个问题了吗,我也面临着同样的问题。