Ios 丰富的swift通知。通知中未显示图像

Ios 丰富的swift通知。通知中未显示图像,ios,swift3,notifications,apple-push-notifications,rich-notifications,Ios,Swift3,Notifications,Apple Push Notifications,Rich Notifications,我做了丰富的通知,在通知中显示图像,但每当我发送简单的消息,我就会收到通知。最后2天,我试图在通知中显示图像,但没有完成。请帮我做这个 提前谢谢您 这是我的代码。 在通知服务扩展中 override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) { self.cont

我做了丰富的通知,在通知中显示图像,但每当我发送简单的消息,我就会收到通知。最后2天,我试图在通知中显示图像,但没有完成。请帮我做这个

提前谢谢您

这是我的代码。

在通知服务扩展中

override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
        self.contentHandler = contentHandler
        bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)

        // Get the custom data from the notification payload
        if let data = request.content.userInfo["data"] as? [String: String] {
            // Grab the attachment
            if let urlString = data["attachment-url"], let fileUrl = URL(string: urlString) {
                // Download the attachment
                URLSession.shared.downloadTask(with: fileUrl) { (location, response, error) in
                    if let location = location {
                        // Move temporary file to remove .tmp extension
                        let tmpDirectory = NSTemporaryDirectory()
                        let tmpFile = "file://".appending(tmpDirectory).appending(fileUrl.lastPathComponent)
                        let tmpUrl = URL(string: tmpFile)!
                        try! FileManager.default.moveItem(at: location, to: tmpUrl)

                        // Add the attachment to the notification content
                        if let attachment = try? UNNotificationAttachment(identifier: "", url: tmpUrl) {
                            self.bestAttemptContent?.attachments = [attachment]
                        }
                    }
                    // Serve the notification content
                    self.contentHandler!(self.bestAttemptContent!)
                    }.resume()
            }
        }

    }
这是我的通知结构

{
 "aps" : {
    "alert" : {
        "title" : "Push Remote Rich Notifications",
        "subtitle" : "iOS 10 - New API",
        "body" : "Media Image Rich notification"
        },
    "mutable-content" : 1,
    "category" : "imageIdentifier"
    },
    "data" : {
      "attachment-url": "https://raw.githubusercontent.com/Sweefties/iOS10-NewAPI-UserNotifications-Example/master/source/iOS10-NewAPI-UserNotifications-Example.jpg"
    }
}

使用以下代码

var contentHandler: ((UNNotificationContent) -> Void)?
var bestAttemptContent: UNMutableNotificationContent?

override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
     self.contentHandler = contentHandler
     bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)

     guard let bestAttemptContent = bestAttemptContent else {
         return
     }
     guard let attachmentUrlString = request.content.userInfo["pic_url"] as? String else {
         return
     }
     guard let url = URL(string: attachmentUrlString) else {
         return
     }

     URLSession.shared.downloadTask(with: url, completionHandler: { (optLocation: URL?, optResponse: URLResponse?, error: Error?) -> Void in
         if error != nil {
             print("Download file error: \(String(describing: error))")
             return
         }
         guard let location = optLocation else {
             return
         }
         guard let response = optResponse else {
             return
         }

         do {
             let lastPathComponent = response.url?.lastPathComponent ?? ""
             var attachmentID = UUID.init().uuidString + lastPathComponent

             if response.suggestedFilename != nil {
                 attachmentID = UUID.init().uuidString + response.suggestedFilename!
             }

             let tempDict = NSTemporaryDirectory()
             let tempFilePath = tempDict + attachmentID

             try FileManager.default.moveItem(atPath: location.path, toPath: tempFilePath)
             let attachment = try UNNotificationAttachment.init(identifier: attachmentID, url: URL.init(fileURLWithPath: tempFilePath))

             bestAttemptContent.attachments.append(attachment)
         }
         catch {
             print("Download file error: \(String(describing: error))")
         }

         OperationQueue.main.addOperation({() -> Void in
             self.contentHandler?(bestAttemptContent);
         })
     }).resume()
 }

 override func serviceExtensionTimeWillExpire() {
     // Called just before the extension will be terminated by the system.
     // Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
     if let contentHandler = contentHandler, let bestAttemptContent =  bestAttemptContent {
         contentHandler(bestAttemptContent)
     }
    }
在info.plist中还包含以下代码

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>
NSAppTransportSecurity
NSAllowsArbitraryLoads
在Info.plist的NSExtension NSDictionary中添加此键

    <key>NSExtensionAttributes</key>
    <dict/>
NSExtensionAttributes

来自文档:“您的分机时间有限(不超过30秒)修改内容并执行contentHandler块。如果您不及时执行该块,系统将调用扩展的serviceExtensionTimeWillExpire方法,为您提供最后一次执行该块的机会。如果您不执行,系统将向用户显示通知的原始内容。”你是否也会遇到这种情况?我想不,我无法处理……但我会立即收到通知,但图像不会显示。你找到解决方案了吗?我也遇到了同样的情况。请尝试在几秒钟内下载的非常小的图像。您使用的图像非常大。您好@KrishnaDattShukla。使用7 kb大小的图像,但仍然无法获取图像我尝试了所有操作,但没有调用
didReceive
任何原因?