我有一个用Swift编写的UNNotificationServiceExtension
。它所做的一切:
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!)
触发 有人遇到这个问题吗?任何解决方法?有什么想法吗?
最佳答案
首次宣布该功能时,我构建了一个UNNotificationServiceExtension
。两个想法:
URLSession
数据任务无法获取远程媒体。进行系统诊断,并在libnetwork.dylib中查找错误。 nil
的信息。