LoginSignup
36
35

More than 5 years have passed since last update.

iOS10でPush通知を受け取るとどうなるの?こうなるよ

Last updated at Posted at 2016-10-17

アプリを起動してない状態からPush通知から起動

UNUserNotificationCenterDelegateの

userNotificationCenter(center: UNUserNotificationCenter, didReceiveNotificationResponse response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void)

を実装している場合は上記が呼ばれ、実装していない場合は

AppDelegateの

application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject])

が呼ばれる

アプリ起動中にPushを受け取った場合

UNUserNotificationCenterDelegateの

userNotificationCenter(center: UNUserNotificationCenter, didReceiveNotificationResponse response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void)

を実装している場合は上記が呼ばれ、実装していない場合は

AppDelegateの

application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void)

が呼ばれる

36
35
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
36
35