0
私はappDelegateのapplication:didFinishLaunchingWithOptions:
メソッドに次のコードを持っています。通知はiOS9で2回表示されます
if([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
}
何か間違っていますか?
でこれを試してみてください。 isRegisteredForRemoteNotificationsはどのように違いがありますか? – Chinmay