gpt4 book ai didi

objective-c - CoreData 应用程序中的 "Save"

转载 作者:行者123 更新时间:2023-12-03 18:07:12 25 4
gpt4 key购买 nike

我这里有一个 CoreData 应用程序(不基于文档)、1 个实体和 1 个表格 View ,用于编辑/添加/删除实体的“实例”。现在我可以手动添加和保存,但我想

a) save automaticly changes
b) add automaticly some "instances" with the first start.

我认为a)可以通过NSNotifications来解决。但实体应该使用哪个?

有什么想法可以解决a)b)吗?

感谢您的每一个回答。 =)

最佳答案

自动保存有时可能比您最初预期的要复杂一些,因为有时您的应用程序数据可能处于无效状态(例如,当用户正在编辑实体时)并且无法保存或无法保存保存没有意义。不幸的是,没有简单的 setAutosaves:YES 属性,因此您必须自己实现它。在执行某些操作后使用通知进行保存是一种方法,如果对您的应用程序有意义,您还可以设置一个计时器来定期保存。

要填充空数据文件,只需在启动时检查数据存储是否为空(applicationDidFinishLaunchingawakeFromNib 是两个可能的放置位置),并且如果是正常插入一些实体。唯一棘手的部分是在此过程中禁用撤消管理。以下是我的一个应用程序的示例:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
{
NSURL *fileURL = [NSURL fileURLWithPath:[self.applicationSupportFolder stringByAppendingPathComponent:WLDataFileName]];

NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
NSPersistentStoreCoordinator *coordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init];
NSFetchRequest *request = [[NSFetchRequest alloc] init];

[coordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:fileURL options:nil error:NULL];
[context setPersistentStoreCoordinator:coordinator];
[request setEntity:[NSEntityDescription entityForName:@"Shelf" inManagedObjectContext:context]];

if ( [context countForFetchRequest:request error:NULL] == 0 )
[self _populateEmptyDataStore:context];

_managedObjectContext = [context retain];

[request release];
[coordinator release];
[context release];

// finish loading UI, etc...
}

- (void)_populateEmptyDataStore:(NSManagedObjectContext *)context;
{
[[context undoManager] disableUndoRegistration];

WLSmartShelfEntity *allItems = [NSEntityDescription insertNewObjectForEntityForName:@"SmartShelf" inManagedObjectContext:context];
WLSmartShelfEntity *trash = [NSEntityDescription insertNewObjectForEntityForName:@"SmartShelf" inManagedObjectContext:context];

allItems.name = NSLocalizedString( @"All Items", @"" );
allItems.predicate = [NSPredicate predicateWithFormat:@"isTrash = FALSE"];
allItems.sortOrder = [NSNumber numberWithInteger:0];
allItems.editable = [NSNumber numberWithBool:NO];

trash.name = NSLocalizedString( @"Trash", @"" );
trash.predicate = [NSPredicate predicateWithFormat:@"isTrash = TRUE"];
trash.sortOrder = [NSNumber numberWithInteger:2];
trash.editable = [NSNumber numberWithBool:NO];

[context processPendingChanges];
[[context undoManager] enableUndoRegistration];

DebugLog( @"Filled empty data store with initial values." );
}

关于objective-c - CoreData 应用程序中的 "Save",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/496073/

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