티스토리 뷰

반응형


APNS등록시 iOS 8 버전부터 변경 됨.


if ([application respondsToSelector:@selector(registerUserNotificationSettings:)])

{

//iOS8

UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];

[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];

[[UIApplication sharedApplication] registerForRemoteNotifications];

} else {

//iOS7

[[UIApplication sharedApplication] registerForRemoteNotificationTypes: (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];

}


앱 실행시(시뮬이던, 디바이스던) 푸쉬정보 동의 팝업이 떠야 정상.


참고 사이트 : http://corinnekrych.blogspot.kr/2014/07/how-to-support-push-notification-for.html

반응형
댓글
반응형