views:

48

answers:

0

hi everyone,

As i said in the title of this thread, I have a problem with Push notification of my application. There is 2 cases : When the app asks you if you want push notification and you push OK, it's working great.

This function :

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken

is called when registerForRemoteNotificationTypes is called :

- (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Add registration for remote notifications
    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
    ...
}

But when you select NO at the beginning, and then you change your settings to accept push notification, nothing append and this function didRegisterForRemoteNotificationsWithDeviceToken is never called.

Please help me, i'm getting crazy!