答案 0 :(得分:-1)
对于远程通知,请设置mutable-content : 1
和category : newCategory
。请注意,类别值设置为“newCategory”,它与您之前添加到UNUserNotificationCenter和UNNotificationContentExtensions plist的内容相匹配。
示例:
{
"aps" : {
"alert" : {
"title" : "title",
"body" : "Your message Here"
},
"mutable-content" : "1",
"category" : "newCategory"
},
"otherCustomURL" : "http://www.xxx.jpg"
}