gpt4 book ai didi

ios - 更新 RLMObject 为 Swift/IOS

转载 作者:可可西里 更新时间:2023-11-01 00:24:32 25 4
gpt4 key购买 nike

我正在尝试更新 Realm 中 RLMObject 的现有实例。

我找不到实现它的方法..

请举个例子

我可以保存和删除对象,但不知道如何使用以下方法更新对象:

//Find Existing 
let predicate = NSPredicate(format: "formname = %@",formname)
var localTypes = FormTypeLocal.objectsWithPredicate(predicate)
if (localTypes.count == 1 ){
var existingForm : FormTypeLocal = localTypes[0] as FormTypeLocal
existingForm.customProp = "newVal"
//Now I need to update?????

let realm = RLMRealm.defaultRealm()
//
// Add to the Realm inside a transaction
realm.beginWriteTransaction()
realm.addObject(newForm)
realm.commitWriteTransaction()
//Delete
realm.beginWriteTransaction()
realm.deleteObject(newForm)
realm.commitWriteTransaction()

最佳答案

您走在正确的轨道上,您只需要确保您的更新是在写入事务中完成的。

有了 Realm,只要你在写入事务中修改/更新 Realm 对象,这些更改就会被持久化。例如:

let realm = RLMRealm.defaultRealm()
realm.beginWriteTransaction()
// Find objects
var localTypes = FormTypeLocal.objectsWhere("formname = \(formname)")
// Update one of those objects
var existingForm = localTypes[0] as FormTypeLocal
existingForm.customProp = "newVal"
// Wrap up transaction
realm.commitWriteTransaction()

我们正在开发支持泛型的 Swift 接口(interface),因此将来不再需要 as FormTypeLocal

关于ios - 更新 RLMObject 为 Swift/IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24970436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com