OStack程序员社区-中国程序员成长平台

标题: ios - 推送通知传递和关闭回调 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:47
标题: ios - 推送通知传递和关闭回调

当应用不活动时,我们可以在推送通知发送或关闭时从客户端进行服务调用吗?

APNS 是否还提供任何有关通知是否在个人级别传递的信息,是否有任何 API 可以用来查询传递状态报告?



Best Answer-推荐答案


是的,如果您将 content-available 标志发送到 aps 字典中的 1,您可以检测到远程通知的传递。如果设置了key,就会调用AppDelegate的application:didReceiveRemoteNotification:fetchCompletionHandler:方法。

此外,从 iOS 10 开始,您还可以检测远程通知的消失。为此,您需要实现 UserNotifications 框架。

您需要执行以下步骤:

  1. 使用 iOS 10 API 注册远程通知的类别。 您需要检查 [[UNUserNotificaionCenter currentNotificationCenter] setNotificationCategories] 方法是否相同。见 https://developer.apple.com/documentation/usernotifications/unusernotificationcenter

  2. iOS 10 引入了一个名为 UNNotificationCategory 的新类,用于封装类别实例。您需要在类别实例上设置 CustomDismissAction 才能接收解除回调。

https://developer.apple.com/documentation/usernotifications/unnotificationcategory

  1. 通过 userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: 方法的实现来实现 UNUserNotificationCenterDelegate 协议(protocol)。如果您执行上述步骤,此方法将接收对解除操作的回调。

https://developer.apple.com/documentation/usernotifications/unusernotificationcenterdelegate

将您的委托(delegate)设置为 UserNotificationCenter - [[UNUserNotificaionCenter currentNotificationCenter].delegate = your_delegate_implementation

  1. 使用负载中的 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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4