微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Swift ui复制和编辑struct Identifiable Codable

如何解决Swift ui复制和编辑struct Identifiable Codable

我具有以下结构:

struct Note: Identifiable,Codable {
    enum CodingKeys: CodingKey {
        case title,message,background
    }
    
    let id = UUID()
    let title: String
    let message: String
    let background: NoteBackground

func copy(with zone: NSZone? = nil) -> Any {
        let copy = Note(title: title,message: message,background: background)
        return copy
    }
}

我想做的就是能够复制和修改一个对象,其ID不同于复制的对象。

let note = Note(
            title: "Title",message: "Message",background: .url("https://a.wattpad.com/useravatar/climaxmite.256.718018.jpg")
        )
let note2 = note
.copy()//clone
.edit(background: .gradient([
                            Color(red: 0,green: 0.95,blue: 1),Color(red: 0.56,green: 0.18,blue: 0.89)
                ])) as! Note

我如何提出建议?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。