0

我正在尝试保存从此处下载的大小为 7.9MB 的图像。但是在'try data.write ...'行,扩展程序崩溃了,我在控制台中得到了这个。

内核 EXC_RESOURCE -> 通知扩展 [3137] 超出内存限制:ActiveHard 12 MB(致命)

内核 46710.034 内存状态:killing_specific_process pid 3137 [通知扩展](每个进程限制 3)-memorystatus_available_pages:73906

ReportCrash 开始延长事务计时器默认 18:39:53.104640 +0530

ReportCrash 进程通知扩展 [3137] 被 jetsam 杀死,原因是每个进程限制

是不是因为 7.9MB 的大小太大而无法处理。如果是,那么它没有意义,因为有必要在创建 UNNotificationAttachment 对象之前将媒体保存在临时存储中。在官方文档中,png 文件的限制为 10 MB,视频为 50 MB。我该如何解决这个问题?

let fileManager = FileManager.default
let folderName = ProcessInfo.processInfo.globallyUniqueString

guard let folderURL = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent(folderName, isDirectory: true) else {
        return nil
}

do {
    try fileManager.createDirectory(at: folderURL, withIntermediateDirectories: true, attributes: nil)
    let fileURL = folderURL.appendingPathComponent(fileIdentifier)
    try data.write(to: fileURL, options: [])
    let attachment = try UNNotificationAttachment(identifier: fileIdentifier, url: fileURL, options: options)
        return attachment
} catch let error {

}
4

2 回答 2

2

我不知道您可以写入临时目录(可用空间除外)的内容是否有大小限制,但我可以告诉您,我已经编写了向该目录写入数百兆字节的客户端应用程序那不是你的问题。

于 2018-12-07T13:29:51.510 回答
0

它以这种方式工作。我没有使用下载数据NSData(contentsOf:),而是使用URLSession.shared.downloadTask(with:). 这会自行存储下载的数据,因此我们无需编写它。只需使用 将其移动到所需的临时位置FileManager.shared.moveItem(at:to:)。看起来问题出在NSData.write(to:options:)功能上。它有一些大小限制。

URLSession.shared.downloadTask(with: url) { (location, response, error) in

    if let location = location {
        let tmpDirectory = NSTemporaryDirectory()
        let tmpFile = "file://".appending(tmpDirectory).appending(url.lastPathComponent)
        let tmpUrl = URL(string: tmpFile)!
        try! FileManager.default.moveItem(at: location, to: tmpUrl)
        if let attachment = try? UNNotificationAttachment(identifier: "notification-img", url: tmpUrl) {
        bestAttemptContent.attachments = [attachment]
        }
    }
    contentHandler(bestAttemptContent)
}.resume()
于 2018-12-07T15:22:10.560 回答