如何将 CGPaths 持久化到 CoreData

How to persist CGPaths to CoreData

我正在 iOS 上制作绘图应用程序,并希望将用户绘图保存到核心数据。

我知道 NSData 是 CoreData 的属性类型,所以我正在考虑使用它。

我的想法是以某种方式将我的 CGPath 数组转换为 NSData,然后将 NSData 保存到 Core Data。有没有人知道我会怎么做或有更好的解决方案?

如果您将 CGPath 转换为支持 NSCoding/NSSecureCodingUIBezierPath

do {
    let path = UIBezierPath(cgPath: cgPath)
    let data = try NSKeyedArchiver.archivedData(withRootObject: path, requiringSecureCoding: false)
} catch {
    print(error)
}

您还可以将 Data 转换回 UIBezierPath:

do {
    if let path = try NSKeyedUnarchiver.unarchivedObject(ofClass: UIBezierPath.self, from: data) {
        let cgPath = path.cgPath
    }
} catch {
    print(error)
}

由于 UIBezierPath 符合 NSSecureCoding,您所要做的就是设置自定义 class 和使其工作的模块。

entity.path = UIBezierPath(cgPath: cgPath)