일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 앨범북
- FIDO2
- 앱스토어
- apple
- kmip
- openssl
- css
- SSL
- 안드로이드
- otpkey
- albumbook
- git
- MYSQL
- OSX
- 앱리소스
- 2FA
- WebAuthn
- 인증
- Xcode
- MFA
- Android
- appres
- OTP
- Nodejs
- SSH
- SwiftUI
- 애플
- SWIFT
- fido
- MSYS2
Archives
- Today
- Total
인디노트
iOS: Push 수신 시점에서 앱의 3가지 실행 상태 본문
iOS 앱에서 push를 수신할 때, 앱의 상태는 다음의 세 가지 상태 중 하나에 있다.
1. 앱이 실행 상태가 아님( push 수신으로 실행됨 )
2. 앱이 foreground( 실행 중 ) 상태에서 push를 수신함
3. 앱이 background 상태에서 push를 수신함
각각의 상태에서 별도의 다른 동작을 위해 이 상태를 구분할 수 있어야 하고, AppDelegate 내에서 다음의 코드를 통해 구분이 가능하다.
- (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 수신
}
}
반응형
'소스 팁 > Objective C, Swift, iOS, macOS' 카테고리의 다른 글
iOS - UIView 애니메이션 효과 (0) | 2017.07.10 |
---|---|
xcode 의 시스템 변수 값 (0) | 2017.06.06 |
[iOS] NSMutableDictionary 상속, "method only defined for abstract class" (0) | 2017.04.04 |
OS X 에서 클립보드 모니터링 방법 (0) | 2016.04.29 |
Crash Code : iOS 에서 카메라 관련 크래쉬 코드 (0) | 2016.04.29 |
Comments