代替try! realm.transactionWithBlock()使用
try! realm.write {....}
使用以下命令查询数据库:
代替 ToDoItem.objects(with: predicate)
realm.objects(ToDoItem.self).filter(predicate)
代替try! realm.transactionWithBlock()使用
try! realm.write {....}
使用以下命令查询数据库:
代替 ToDoItem.objects(with: predicate)
realm.objects(ToDoItem.self).filter(predicate)
本文标题:Realm in a write transaction - c
本文链接:https://www.haomeiwen.com/subject/eesxvktx.html
网友评论