Skip to content

Instantly share code, notes, and snippets.

@happy-coding
Created August 15, 2012 20:37
Show Gist options
  • Save happy-coding/3363405 to your computer and use it in GitHub Desktop.
Save happy-coding/3363405 to your computer and use it in GitHub Desktop.
Simple UIViewController prepared for Core Data
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
@interface MyViewController : UIViewController <NSFetchedResultsControllerDelegate>
@property (strong, nonatomic) NSFetchedResultsController *fetchedResultsController;
@property (strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment