Develop

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

by hooni posted Apr 28, 2015
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

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

UIRemoteNotificationType types =
    [[UIApplication sharedApplication] enabledRemoteNotificationTypes];

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