问题是是否将 CoreData 与 Reskit 一起使用,这是因为我不知道使用它有什么好处,或者在什么情况下建议使用它。
这个问题是因为我有一个带有CoreData的应用程序(老开发人员做了这个工作),我觉得它消耗了大量资源并使应用程序变慢。
我有一个新闻源,所以这里的数据总是在变化,所以我不需要保留我认为的数据?但是我有一些我想在本地存储的对象,比如我的个人资料图片和偏好。
*更新*
这是定义“持久性”的代码(我认为)
NSManagedObjectModel *managedObjectModel = [NSManagedObjectModel mergedModelFromBundles:nil];
RKObjectManager* man = [RKObjectManager managerWithBaseURL:[NSURL URLWithString:BASE_URL]];
man.requestSerializationMIMEType = RKMIMETypeJSON;
[RKObjectManager setSharedManager:man];
[AFNetworkActivityIndicatorManager sharedManager].enabled = YES;
RKManagedObjectStore *managedObjectStore = [[RKManagedObjectStore alloc] initWithManagedObjectModel:managedObjectModel];
man.managedObjectStore = managedObjectStore;
//configuring Mappings
/**some mappings**/
[managedObjectStore createPersistentStoreCoordinator];
NSString *storePath = [RKApplicationDataDirectory() stringByAppendingPathComponent:@"Database.sqlite"];
NSError *error;
NSPersistentStore *persistentStore = [managedObjectStore addSQLitePersistentStoreAtPath:storePath fromSeedDatabaseAtPath:nil withConfiguration:nil options:nil error:&error];
NSAssert(persistentStore, @"Failed to add persistent store with error: %@", error);
// Create the managed object contexts
[managedObjectStore createManagedObjectContexts];
// Configure a managed object cache to ensure we do not create duplicate objects
managedObjectStore.managedObjectCache = managedObjectStore.managedObjectCache;