0

以前,我只有一个对象具有我需要的所有值。我将它们“重新组合”并制作了单独的对象。我将具有新对象类型的属性添加到原始对象。如何将旧属性值分配给对象的属性?

这是我的对象的代码:

class MainObject: Object {
    dynamic var id: Int = 0
    // Schema 0
    dynamic var otherId: Int = 0
    dynamic var otherStr: String = ""

    dynamic var anotherId: Int = 0
    dynamic var anotherD: Double = 0.0
    dynamic var anotherText: String = ""

    // Schema 1
    dynamic var otherObjectVar: OtherObject?
    dynamic var anotherObjectVar: AnotherObject?
}

// Schema 1
class OtherObject: Object {
    dynamic var id: Int = 0
    dynamic var str: String = 0
}
class AnotherObject: Object {
    dynamic var id: Int = 0
    dynamic var d: Double = 0.0
    dynamic var text: String = ""
}

(更改的变量名称)

我尝试使用convenience init(){}但没有用。我还尝试将对象实例分配给 newObject,但这也不起作用。这是为了更容易理解的代码:

let other = OtherObject()
other.id = 0
other.str = oldObject["otherStr"] as! string
newObject["otherObjectVar"] = other

如何将旧属性迁移到另一个对象的新属性中?

编辑:暂时,我用

let obj = migration.create(MainObject.className())
migration.delete(obj)

但我认为这不是正确的解决方案。因此,如果有人对此有解决方案,我将不胜感激。

4

1 回答 1

2

假设您在模式迁移期间执行此操作,则需要使用migration.create来创建新对象,而不是它们的 init。然后,您可以按照以下方式将它们设置在新对象上:

let other = migration.create(OtherObject.className())
other["id"] = 0
other["str"] = oldObject["otherStr"] as! String
newObject?["otherObjectVar"] = other
于 2016-11-22T04:12:52.513 回答