iOS 10 이상 APNS 관련 AppDelegate에 작성되는 메소드
개발/iOS
2020. 11. 19. 10:36
//최초 호출 메서드로 앱이 최초로 실행될 때 호출 (Launch mode) - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions // Background 전환, 앱이 완전 종료될 때, 화면 잠김 시, 홈버튼 더블탭 동작 때 호출 - (void)applicationWillResignActive:(UIApplication *)application // Background 전환 - (void)applicationDidEnterBackground:(UIApplication *)application // Foreground 전환 - (void)applicationWillE..