Please note, this blog entry is from a previous course. You might want to check out the current one.
Recreate the user-interface from last week’s assignment but rely entirely on the above-mentioned Core Data database to present it.
Copy the files for the last table view controller into the current project. Adjust it to setup the fetched results controller every time the view appears:
- (void)viewWillAppear:(BOOL)animated { ... [self.sh useDocumentWithOperation:^(BOOL success) { [self setupFetchedResultsController]; }]; }
Continue reading “cs193p – Assignment #6 Task #2 Part #3”