我正在尝试保存从此处下载的大小为 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 {
}