gpt4 book ai didi

ios - 在不提交的情况下更新 RLMObject 的模型

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:56:17 25 4
gpt4 key购买 nike

本质上,我有一个 UITableView,其中的单元格有一个 UITextField,对应于 RLMObject 中的属性(比方说 10 多个属性)。我只允许用户在编辑模式下编辑字段(通过禁用用户交互)。如果用户按下完成,我希望将 RLMObject 提交到数据库。

我添加了当 TextField 上的 Editing Did 结束时要触发的操作。该操作应更新 RLMObject 的模型。

我尝试以下操作,其中 self.currentProfile 是我 View 的 RLMObject 属性:

 - (BOOL) profileTextFieldDidChange:(UITextField *)textField
{
self.currentProfile.name = textField.text; //crashes here
return YES;
}

我的 Realm 对象的类如下(为简单起见,我去掉了一些属性):

@interface Profile : RLMObject
@property (nonatomic) NSString * profileId; // primary key
@property (nonatomic) NSString * name;
@property (nonatomic) NSString * color;
-(id) initWithPrimaryKey;
@end

我从上面的代码中得到以下错误信息:由于未捕获的异常“RLMException”而终止应用程序,原因:“尝试在写入事务之外修改对象 - 首先在 RLMRealm 实例上调用 beginWriteTransaction。”

以前的解决方案指出我应该在更改之前添加 callBeginWriteTransaction 并提交或取消,具体取决于用户是退出并取消编辑还是按下完成并将新配置文件提交到数据库。

我不想在我的 UITableViewController 类中添加这些,因为我已经将我的程序解耦为具有中间数据访问层。在下面的代码中,我想将所有数据库事务都放在我的 DataAccessServices 层中。有替代解决方案吗?我不是 Realm 专家,而且很新。我想指出,我需要导航到此 View 中的另一个 View ,并在另一个 View 中进行其他 Realm 事务。如果我在切换到新 View 时仍在编辑——也就是说我会嵌套 beginWriteTransactions,这会导致问题吗?

提前致谢。

我不满意的当前解决方案如下:

- (void)viewWillDisappear:(BOOL)animated{
[super viewWillDisappear:animated];
if([self.tableView isEditing]){
RLMRealm *realm = [RLMRealm defaultRealm];
[realm cancelWriteTransaction];
}
NSLog(@"gone...");
}

//Edit Mode --------------------------------
- (IBAction)enterEditMode:(id)sender {
if ([self.tableView isEditing]) { //Turn off Edit Mode
[self.tableView setEditing:NO animated:YES];
[self.editButtonItem setTitle:@"Edit"];

[DataAccessServices saveProfile:self.currentProfile];
[self reloadSections];

RLMRealm *realm = [RLMRealm defaultRealm];
[realm commitWriteTransaction];
}
else {// Turn on edit mode
[self.editButtonItem setTitle:@"Done"];
[self.tableView setEditing:YES animated:YES];
[self reloadSections];
RLMRealm *realm = [RLMRealm defaultRealm];
[realm beginWriteTransaction];
}
}

最佳答案

据我了解,您正在尝试更新现有记录的数据。根据docs您可以使用现有记录的主键初始化一个新对象,如下所示。

Profile *myWriteableProfile = [[Profile alloc] initWithValue:self.currentProfile];
myWriteableProfile.name = @"Dummy Name!"; // No Exception will be thrown! :)

RLMRealm *realm = [RLMRealm defaultRealm];
[realm beginWriteTransaction];
[Profile createOrUpdateInRealm:realm withValue:myWriteableProfile];
[realm commitWriteTransaction];

希望对您有所帮助:)

关于ios - 在不提交的情况下更新 RLMObject 的模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33990512/

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