Fix README.md mention of primary managed object context

This commit is contained in:
Blake Watters
2012-09-30 22:51:27 -04:00
parent ebb7b8df50
commit 48f0d8f450

View File

@@ -390,7 +390,7 @@ RKManagedObjectStore *managedObjectStore = [[RKManagedObjectStore alloc] initWit
[managedObjectStore addSearchIndexingToEntityForName:@"Article" onAttributes:@[ @"title", @"body" ]];
[managedObjectStore addInMemoryPersistentStore:nil];
[managedObjectStore createManagedObjectContexts];
[managedObjectStore startIndexingPrimaryManagedObjectContext];
[managedObjectStore startIndexingPersistentStoreManagedObjectContext];
Article *article1 = [NSEntityDescription insertNewObjectForEntityForName:@"Article" inManagedObjectContext:managedObjectStore.mainQueueManagedObjectContext];
article1.title = @"First Article";