// iOS8이상
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
if ([application currentUserNotificationSettings].types == UIUserNotificationTypeNone) {
// 꺼짐
} else {
// 켜짐
}
} else {
// iOS7이하
if ([[UIApplication sharedApplication] enabledRemoteNotificationTypes] == UIRemoteNotificationTypeNone) {
// 꺼짐
} else {
// 켜짐
}
}
## 함수 안에 집어 넣어주어야 합니다.
실행시키는 법은 다양하고, viewDidLoad에 넣어주어도 무방합니다.
'Programming > Objective-C' 카테고리의 다른 글
버튼 누를 때 어두워지는 이미지 처리 없애기! UIButton PressColor remove (0) | 2016.05.02 |
---|