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. [virtualbox] VirtualBox에 Ubuntu 설치하기

  2. [mysql] MySQL 데이터베이스 추가 및 사용자 추가

  3. [oracle] Oracle 사용자 추가 절차

  4. [mysql] MySQL 백업 및 복구

  5. [mysql] MySql DB/테이블 사이즈 확인을 위한 쿼리

  6. SQL JOIN 정리 (Inner Join & Outer Join)

  7. [python] 파라미터 앞에 *, ** 의 의미? (*args, **kwargs)

  8. 링크들 보고 지울 내용

  9. [Javascript][Ajax] 자바스크립트 강의 산출물

  10. [ios] Locale Identifiers

  11. [ios] Swift 4 Dictionary 사용하기

  12. [ios] Swift 4 Singleton inheritance

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