我正在尝试在这里实现apple通知集成中通知图像的最后一部分
这是文档中的C代码:
- // Modify the notification content here...
- self.bestAttemptContent.title = [NSString stringWithFormat:@"%@ [modified]", self.bestAttemptContent.title];
- self.contentHandler(self.bestAttemptContent);
+ [[FIRMessaging extensionHelper] populateNotificationContent:self.bestAttemptContent withContentHandler:contentHandler];
我想把它转换成swift代码,这样我就可以在我的项目ImageNotification.swift 中使用它
根据Firebase swift文档判断,它可能看起来像这样:
Messaging.serviceExtension().populateNotificationContent(self.bestAttemptContent, withContentHandler: contentHandler)