import Realm_EasyBackground
let realm = try! Realm()
realm.writeBackground { realm in
// Write on background thread
let person = Person()
try person.update(json)
realm.add(person, update: true)
}
import Realm_EasyBackground
let realm = try! Realm()
realm.writeBackground ({ realm in
// Write on background thread
let person = Person()
try person.update(json)
realm.add(person, update: true)
},
completion { (error: ErrorType?) in
// Callback on main thread
})
Realm-EasyBackground 可通过CocoaPods获得。要安装,只需将以下行添加到您的 Podfile
pod "Realm-EasyBackground"
muukii,[email protected]
Realm-EasyBackground 在 MIT 许可证下可用。有关更多信息,请参阅 LICENSE 文件。