无法在doc或Google中找到有关此内容的具体信息,因此以下是示例: class Parent: Object { let children = ListChild()}class Child: Object { weak var parent: Parent?} 当我想删除特定的Child“child1”时,我应该使用
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) }
谢谢!
我只是自己测试一下来确定;简单地说:Realm().write { realm.delete(child1) }
将自动从列表中删除它.您无需自己进入并手动删除列表中的对象.