我正在创建一个 iOS 应用程序(Objective C 和 xcode 8.3)。我已将推送通知与 firebase 集成。它工作正常。现在我需要显示带有图像的通知(丰富的通知)。我已经创建了通知服务扩展。我在应用程序委托中创建了类别标识符并将其设置到通知服务扩展的 info.plist 中。我还为通知服务扩展启用了推送通知。我在通知有效负载中添加了“mutable_content”。问题是,当发送通知控件时没有触发到通知服务扩展部分。这会是什么问题?我错过了什么吗?我在 DidFinishLaunchingWithOption 中编写了以下代码块。
UNNotificationCategory* generalCategory = [UNNotificationCategory
categoryWithIdentifier:@"GENERAL"
actions:@[]
intentIdentifiers:@[]
options:UNNotificationCategoryOptionCustomDismissAction];
// Register the notification categories.
UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter];
[center setNotificationCategories:[NSSet setWithObjects:generalCategory, nil]];