Develop

[ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

by hooni posted Apr 28, 2015
?

Shortcut

PrevPrev Article

NextNext Article

ESCClose

Larger Font Smaller Font Up Down Go comment Print

iOS 설정(Settings)에서 푸시 알림(APNS)이 꺼져있는지 확인하는 코드

UIRemoteNotificationType types =
    [[UIApplication sharedApplication] enabledRemoteNotificationTypes];

if (types == UIRemoteNotificationTypeNone){
    // 알림 꺼져 있음
}