Deep Linking iOS Push Notifications

前端 未结 2 772
-上瘾入骨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:15

    Try to move your dictionary entry for view outside of the "aps" dictionary.

    {
        "aps": 
        {
            "alert": "look at this stuff"
        }
        "view": "wc1"
     }
    

提交回复
热议问题