iOS 설정(Settings)에서 푸시 알림(APNS)이 꺼져있는지 확인하는 코드
UIRemoteNotificationType types =
[[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types == UIRemoteNotificationTypeNone){
// 알림 꺼져 있음
}iOS 설정(Settings)에서 푸시 알림(APNS)이 꺼져있는지 확인하는 코드
UIRemoteNotificationType types =
[[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types == UIRemoteNotificationTypeNone){
// 알림 꺼져 있음
}