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. ZBar 라이브러리를 이용한 바코드 스캔 앱 개발하기

  2. [matlab] 정보은닉 스테가노그래피(Steganography) 수업

  3. [js] Text 값을 클립보드에 복사하기

  4. [c] RSA 암호화 구현(gmp 라이브러리 활용)

  5. [php] 한글 문자열 자르기 (utf-8)

  6. [android] Android N requires the IDE to be running with Java 1.8 or later 오류

  7. [android] 레이아웃 사이즈 변경 (동적; programmatically)

  8. [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙)

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

  10. [kotlin] 코틀린 안드로이드 앱 버전/빌드 정보

  11. 캘리포니아 운전면허 족보

  12. [ios] 상위 ViewController 가져오기

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 71 Next
/ 71