获取保存在 CoreData 中的 NSData 的 URL

get the URL for NSData saved in CoreData

我正在将 UIImage 保存到 Core Data。所以首先,我将它转换为 NSData,然后保存它。

我需要在图像保存后获取图像的 URL。我这样做是因为我想安排一个带有附件的本地通知,据我所知,唯一的方法是使用 URL。

这是我的代码:

//my image:  
var myImage: UIImage?
var imageData: NSData?
    if let image = myImage {
    imageData = UIImageJPEGRepresentation(image, 0.5)! as NSData
}
myEntity.setValue(imageData, forKey: "image")

这就是我应该向通知添加附件的方式:
UNNotificationAttachment.init(identifier: String, url: URL>, options: [AnyHashable : Any]?)

我正在保存图像并在用户点击按钮保存图像时手动安排通知。

如果您需要更多信息,请告诉我。

您无法获得 URL。如果您将此 属性 配置为使用外部存储,那么是的,从技术上讲可能有一个文件 URL。可能是。但是没有记录的方法来获取它,而且无论如何它可能根本不存在——因为外部存储设置不需要 Core Data 使用外部存储,它只是允许它这样做。

如果您没有使用该设置,那么永远不会有任何 URL,因为图像被保存为 SQLIte 文件的一部分。

如果您需要图像的文件 URL,请将图像保存到与 Core Data 分开的文件中,并将文件名另存为实体 属性。那么文件 URL 就是你保存文件的地方。

以及我如何保存它然后在遇到同样的挑战时在实践中获得 URL 的实现:

Swift 5:

 func getImageURL(for image: UIImage?) -> URL {
            let documentsDirectoryPath:NSString = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0] as NSString
            let tempImageName = "tempImage.jpg"
            var imageURL: URL?

            if let image = image {

                let imageData:Data = image.jpegData(compressionQuality: 1.0)!
                let path:String = documentsDirectoryPath.appendingPathComponent(tempImageName)
                try? image.jpegData(compressionQuality: 1.0)!.write(to: URL(fileURLWithPath: path), options: [.atomic])
                imageURL = URL(fileURLWithPath: path)
                try? imageData.write(to: imageURL!, options: [.atomic])
            }
            return imageURL!
        }