Deep Linking iOS Push Notifications

前端 未结 2 775
-上瘾入骨i
-上瘾入骨i 2021-01-13 06:39

I\'d like to be able to send the viewer to a specific view in the app when they get the push notification, based upon what I send them.

    \"aps\": {
               


        
2条回答
  •  甜味超标
    2021-01-13 07:19

    When application is loaded you can detect that in your appdelegate class in that method:

     didFinishLaunchingWithOptions 
    
    NSDictionary *pushNotification = [options objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
    
    if(pushNotification )
    {
        //Handle remote notification
    }
    

    If application is still running in background and notification came, you can detect that also in your AppDelegate class:

    -(void)application:(UIApplication *)app didReceiveRemoteNotification:(NSDictionary *)userInfo
    

提交回复
热议问题