Skip to content

Instantly share code, notes, and snippets.

View SmallBlackRoom's full-sized avatar

SmallBlackRoom Apps SmallBlackRoom

View GitHub Profile
@mluisbrown
mluisbrown / AppDelegate.h
Last active January 1, 2025 22:35
PersistentStack for using Core Data with iCloud sync in iOS 7, adapted from code by Chris Eidhof for objc.io #4 (http://www.objc.io/issue-4/full-core-data-application.html). The most important thing is that you don't have to know whether the user is using iCloud or not, or even has an iCloud account on their device. Core Data now transparently h…
@import UIKit;
#import "PersistentStack.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end