iOS 8 enabled device not receiving PUSH notifications after code update

后端 未结 8 2488
陌清茗
陌清茗 2020-11-27 03:45

I recently upgraded one of my test iphones to iOS 8 and then upgraded the PUSH registration code as below (using xCode 6)

-(BOOL)hasNotificationsEnabled {

          


        
8条回答
  •  悲&欢浪女
    2020-11-27 04:11

    if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {
        // For iOS 8
    
    [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
    
     [[UIApplication sharedApplication] registerForRemoteNotifications];
    } 
    
    else 
    {
        // For iOS < 8
        [[UIApplication sharedApplication] registerForRemoteNotificationTypes:
         (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];
    }
    

    After this:

    1. Delete the apps who don't have Push notifications any more form the device.
    2. Turn the device off completely and turn it back on.
    3. Go to settings and set date and time ahead a day
    4. Turn the device off again and turn it back
    5. Install the apps again and It'll ask for notification like the first time you installed It.
    6. Reset your date / time again if not automatically set.

    This will reset the notification settings. Re install the app and all will work fine :)

提交回复
热议问题