方法:
didReceive(_ request:UNNotificationRequest,withContentHandler contentHandler:(UNNotificationContent) - > Void)
即使我的远程通知的有效负载包含属性:“mutable-content”:1,iOS 10的NotificationService TARGET也不会自动触发,但是它不会自动触发。这里是有效负载示例:
{
"aps": {
"alert": {
"body": "body",
"subtitle": "subtitle",
"title": "title"
},
"mutable-content": 1
}
}
我是否需要实现任何缺少的配置或代码才能使其正常工作?