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

iOS 앱에서 push를 수신할 때, 앱의 상태는 다음의 세 가지 상태 중 하나에 있다.


1. 앱이 실행 상태가 아님( push 수신으로 실행됨 )


2. 앱이 foreground( 실행 중 ) 상태에서 push를 수신함


3. 앱이 background 상태에서 push를 수신함


각각의 상태에서 별도의 다른 동작을 위해 이 상태를 구분할 수 있어야 하고, AppDelegate 내에서 다음의 코드를 통해 구분이 가능하다.


# Objective-C

- (BOOL)application:(UIApplication *)application 
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 
    if (launchOptions && [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]) {
        // 1번 상태에서 push 수신
    }
 
    return YES;
}
 
 
- (void)application:(UIApplication *)application 
    didReceiveRemoteNotification:(NSDictionary *)userInfo
{
    if (application.applicationState == UIApplicationStateActive) {
        // 2번 상태에서 push 수신
    }
    else {
        // 3번 상태에서 push 수신
    }
}




?

  1. [html] SVG(Scalable Vector Graphics) 간단 정리

  2. [html] 메타태그 사용예.. 은지나 바라~

  3. [html] 캐쉬된 웹페이지 사용하지 않도록 하는 방법

  4. [ios] UIView 계층구조

  5. [ios] @property의 속성 (strong, weak, copy) 사용 경우

  6. [ios] AES256 알고리즘을 이용해 데이터 암호화/복호화 방법

  7. [ios] APNS 샘플 코드..

  8. [ios] APNS 클라이언트 구현 (pdf)

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

  10. [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태

  11. [ios] APNS에 사용할 인증서 만들기 (KeyChain에 있는 인증서 Export)

  12. [ios] App States

Board Pagination Prev 1 ... 29 30 31 32 33 34 35 36 37 38 ... 71 Next
/ 71