iOS NotificationServiceExtension无法正常工作

时间:2020-05-17 16:33:29

标签: ios objective-c unnotificationserviceextension

我已在我的应用中启用NotificationServiceExtension。并完成以下

  1. 在框架,库和嵌入式内容下添加了.apppex
  2. 确认两个部署目标版本均为12.0
  3. 发送可变内容”:我的apns通知有效载荷中的1个
  4. 以下是我的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的真实设备。

0 个答案:

没有答案
相关问题