2017-05-26 45 views
0

enter image description here與圖像

蘋果推送通知有效載荷我收到推送通知從右側底部圖像的X應用程序(圓圈內)

需要顯示同一圖像效果在我的應用程序。什麼是apns有效載荷結構。有誰能夠幫助我。提前致謝。

回答

0

對於遠程通知,設置「可變內容:1」和「類別:newCategory」。請注意,類別值設置爲「newCategory」,與您之前添加到UNUserNotificationCenter和UNNotificationContentExtensions plist的內容相匹配。

實施例:

{ 
    "aps" : { 
     "alert" : { 
     "title" : "title", 
     "body" : "Your message Here" 
     }, 
     "mutable-content" : "1", 
     "category" : "newCategory" 
    }, 
    "otherCustomURL" : "http://www.xxx.jpg" 
} 

有關詳細信息:https://stackoverflow.com/a/38066583/742298