我在我的应用程序中启用了 NotificationServiceExtension。并做了以下
- 在框架、库和嵌入式内容下添加了 .apppex
- 确认两个部署目标版本都是 12.0
- 发送 mutable-content": 1 在我的 apns 通知负载中
以下是我的 NotificationService 的didReceiveNotificationRequest方法
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler { self.bestAttemptContent = [request.content mutableCopy]; self.bestAttemptContent.badge = @20; self.contentHandler(self.bestAttemptContent);
}
不知道我在这里缺少什么。搜索并关注了很多文件。似乎没有任何工作。
我正在使用 XCode 11.2.1 和带有 ios 版本 13 的真实设备。