当应用不活动时,我们可以在推送通知发送或关闭时从客户端进行服务调用吗?
APNS 是否还提供任何有关通知是否在个人级别传递的信息,是否有任何 API 可以用来查询传递状态报告?
Best Answer-推荐答案 strong>
是的,如果您将 content-available 标志发送到 aps 字典中的 1 ,您可以检测到远程通知的传递。如果设置了key,就会调用AppDelegate的application:didReceiveRemoteNotification:fetchCompletionHandler: 方法。
此外,从 iOS 10 开始,您还可以检测远程通知的消失。为此,您需要实现 UserNotifications 框架。
您需要执行以下步骤:
使用 iOS 10 API 注册远程通知的类别。
您需要检查 [[UNUserNotificaionCenter currentNotificationCenter] setNotificationCategories] 方法是否相同。见 https://developer.apple.com/documentation/usernotifications/unusernotificationcenter
iOS 10 引入了一个名为 UNNotificationCategory 的新类,用于封装类别实例。您需要在类别实例上设置 CustomDismissAction 才能接收解除回调。
见 https://developer.apple.com/documentation/usernotifications/unnotificationcategory
- 通过
userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: 方法的实现来实现 UNUserNotificationCenterDelegate 协议(protocol)。如果您执行上述步骤,此方法将接收对解除操作的回调。
见 https://developer.apple.com/documentation/usernotifications/unusernotificationcenterdelegate
将您的委托(delegate)设置为 UserNotificationCenter - [[UNUserNotificaionCenter currentNotificationCenter].delegate = your_delegate_implementation
- 使用负载中的
CustomDismissAction 属性设置类别。
{
"aps": {
"alert": "joetheman",
"sound": "default",
"category": "my-custom-dismiss-action-category",
"content-available":1
},
"message": "Some custom message for your app",
"id": 1234
}
关于ios - 推送通知传递和关闭回调,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35764425/
|