ios - UIImage(文件内容:) returning nil despite file existing in caches directory

标签 ios swift uiimage mapkit

我正在尝试将带有叠加层的 map 快照保存在缓存目录中,并在存在时检索它。然而,尽管创建了文件,但当我尝试检索它时, UIImage(contentsOfFile:) 返回 nil 。我已经打印了写入和读取的文件路径,它们是相同的,并且通过下载容器并检查目录和文件确实存在来验证文件是否存在。

知道这里的问题是什么吗?

let cachesDirectory: URL = {
    let urls = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask)
    return urls[urls.endIndex - 1]
}()

let mapCachesDirectory = cachesDirectory.appendingPathComponent("map-snapshots", isDirectory: true)

func configureMap(data: NSSet?) {
    mapView.isZoomEnabled = false
    mapView.isScrollEnabled = false
    mapView.isUserInteractionEnabled = false

    guard let data = data as? Set<SessionData>, data.count > 0 else { return }

    activityIndicatorView.isHidden = false
    activityIndicatorView.startAnimating()

    DispatchQueue.global(qos: .userInitiated).async {
        var points = [CLLocationCoordinate2D]()
        for object in data {
            guard object.locationLatitude != 0, object.locationLatitude != 0 else { continue }
            points.append(CLLocationCoordinate2DMake(object.locationLatitude, object.locationLongitude))
        }
        DispatchQueue.main.async(execute: {
            self.createOverlay(points: points)
            self.activityIndicatorView.stopAnimating()
            self.activityIndicatorView.isHidden = true
            self.cacheMapImage(view: self.mapView)
        })
    }
}

func cacheMapImage(view: UIView) {
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, true, 0)
    view.drawHierarchy(in: view.bounds, afterScreenUpdates: true)
    let compositeImage = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()

    DispatchQueue.global(qos: .userInitiated).async {
        if let compositeImage = compositeImage, let info = self.info {
            let data = UIImagePNGRepresentation(compositeImage)
            do {
                var isDirectory: ObjCBool = false
                let fileManager = FileManager.default
                if fileManager.fileExists(atPath: self.mapCachesDirectory.absoluteString, isDirectory: &isDirectory) == false {
                    try fileManager.createDirectory(at: self.mapCachesDirectory, withIntermediateDirectories: true, attributes: nil)
                }
                let fileURL = self.mapCachesDirectory.appendingPathComponent(info.uid).appendingPathExtension("png")
                try data?.write(to: fileURL)
                print("\(fileURL.absoluteString) Saved")
            } catch {
                log.error(error)
            }
        }
    }
}

func cachedMapImage() -> UIImage? {
    guard let info = info else { return nil }
    let filePath = mapCachesDirectory.appendingPathComponent(info.uid).appendingPathExtension("png").absoluteString
    let image = UIImage(contentsOfFile: filePath)
    print("\(filePath): \(image)")
    return image
}

func createOverlay(points: [CLLocationCoordinate2D]) {
    guard points.count > 0 else { return }

    let overlay = MKGeodesicPolyline(coordinates: points, count: points.count)
    mapView.add(overlay)

    let inset: CGFloat = 50.0
    mapView.setVisibleMapRect(overlay.boundingMapRect, edgePadding: UIEdgeInsetsMake(inset,inset,inset,inset), animated: true)
}

最佳答案

问题在于您正在使用 URL 属性absoluteString,而您应该使用路径属性。 absoluteStringpath 属性之间的区别在于,absoluteString 包含文件 url 方案(“file://”),这就是它在以下位置找不到文件的原因:应该是它的路径,但它实际上是它的绝对字符串。

关于ios - UIImage(文件内容:) returning nil despite file existing in caches directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42195567/

相关文章:

ios - NavigationBar 外观()(色调颜色..)

ios - 从 CoreData 获取到 TableView

ios - React Native AsyncStorage 的位置和使用

ios - 在纵横比中设置图像高度在 Xcode 中填充自动布局

ios - 无法在 Swift 3.0 中将 CIImage 转换为 UIImage

ios - 为什么我从 "2010-01-01 00:00:00 +900"得到 "2010-12-31 15:00:00 +000"?

ios - 升级到 Xcode 12 后构建速度极慢

ios - 通过隐藏和显示 View 在 iMessage 应用程序中使用不同的 View

ios - 在 Swift 中的按钮上设置图像/图标

uiview - UIImage 来自使用 snapshotViewAfterScreenUpdates : 创建的 UIView