Contents

조회 수 951 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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 수신
    }
}




?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
9 Algorithm OCB5 Injection 앗싸뵹! ㅋㅋ file hooni 2014.07.01 779
8 Algorithm 러시아 페인트공 알고리즘에 대해.. hooni 2013.04.23 22881
7 Algorithm 디피헬만(Diffie-Hellman) 초간단 개념.. hooni 2013.04.23 81004
6 Algorithm 암호 알고리즘 및 프로토콜의 이해.. file hooni 2013.04.23 17194
5 Algorithm Polynomial time 이란? ㅋㅋ hooni 2013.04.23 22239
4 Algorithm [security] 블럭 암호에 대해서.. hooni 2013.04.23 17104
3 Algorithm 스터디 자료, 암호화에 대해서.. 나중에 볼 ppt.. file hooni 2013.04.23 13356
2 Algorithm [security] RSA 암호화 설명과 예.. hooni 2013.04.23 16602
1 Algorithm [algorithm] Greedy (탐욕 기법) hooni 2003.04.23 15096
Board Pagination Prev 1 Next
/ 1