Contents

?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

AppDelegate에 위의 메서드를 추가하면 수신 동의 후 device token 수령 성공/실패와 무관하게 push 다이얼로그에서 사용자의 선택이 허용인지 비허용인지를 알 수 있다.


- (void)application:(UIApplication *)application
    didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
{
    if ((notificationSettings.types & 1) == UIUserNotificationTypeNone) {
        NSLog(@"user selected NO");
    }
    else {
        NSLog(@"user selected YES");
    }
}



?

  1. [ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기

  2. 영어. 반드시 외워야 할 문장 패턴 100개

  3. [js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)

  4. [ios] UIWebView를 이용한 로컬 HTML 파일 표시

  5. 사이버보안실무 발표자료 (2017.06.08)

  6. Enable the Develop Menu in Safari

  7. 원어민이 매일 쓰는 일상표현 150개

  8. [ios] Facebook Cache 갱신하는 함수

  9. [android] Calling activity function from separate class

  10. [ios] Facebook SDK 로그인 설명

  11. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

  12. [coding] Find all anagrams in a string

Board Pagination Prev 1 ... 81 82 83 84 85 86 87 88 89 90 ... 98 Next
/ 98