我有一个UNNotificationServiceExtension
用 Swift 写的。它所做的一切:
- 设置通知标题
- 设置通知正文
- 加载图像并调用
contentHandler ()
这是我在做什么的简短版本:
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
self.contentHandler = contentHandler
self.bestAttemptContent = request.content.mutableCopy() as? UNMutableNotificationContent
bestAttemptContent!.title = GetNotificationTitle(userInfo)
bestAttemptContent!.body = GetNotificationBody(userInfo)
if let imageUrl = <get image url> {
let imageLoaderTask = URLSession.shared.dataTask(with: URL.init(string: imageUrl)!) { (newsImageData, newsImageUrl, newsImageError) -> Void in
if newsImageError == nil && newsImageData != nil {
let documentDirectory = self.GetDocumentDirectory()
if documentDirectory != nil {
let newsFileURL = documentDirectory?.appendingPathComponent("news_image").appendingPathExtension("png")
do {
try newsImageData?.write(to: newsFileURL!)
let attachment = try UNNotificationAttachment(identifier: "newsImage",
url: newsFileURL!,
options: nil)
self.bestAttemptContent?.attachments = [ attachment, ]
self.contentHandler!(self.bestAttemptContent!)
return
} catch {}
}
}
self.contentHandler!(self.bestAttemptContent!)
}
imageLoaderTask.resume()
} else {
self.contentHandler!(self.bestAttemptContent!)
}
}
在95% 的情况下 - 它工作得很好。但是,有时通知到达时没有任何更改(即标题、正文保持不变,没有附加图像)。
我知道:
- 这不是超时:
serviceExtensionTimeWillExpire
没有被调用 - 它看起来不像
UNNotificationServiceExtension
崩溃:我添加了大量NSLog()
调用来检查设备日志 -self.contentHandler!(self.bestAttemptContent!)
触发 - 它更经常发生在我的 iPhone 上而不是 iPad 上
- 我在设备日志中没有找到任何关于这个问题的线索
有人遇到过这个问题吗?任何解决方法?想法?