如何正确删除Realm子对象?

时间:2015-09-09 09:20:16

标签: swift realm

无法在doc或Google中找到有关此内容的具体信息,因此以下是示例:

class Parent: Object {
  let children = List<Child>()
}

class Child: Object {
  weak var parent: Parent?
}

当我想删除特定的Child“child1”时,我应该使用:

Realm().write { realm.delete(child1) }

或者我应该在父母中手动删除它(繁琐):

if let parent = child1.parent {
  if let idx = parent.children.indexOf(child1) {
    parent.children.removeAtIndex(idx)
  }
}
Realm().write { realm.delete(child1) }

谢谢!

1 个答案:

答案 0 :(得分:7)

我自己测试了一下,确定无疑;只需致电:

Realm().write { realm.delete(child1) } 

会自动将其从列表中删除。您不需要自己进入并手动删除列表中的对象。 :)