In French : http://www.vincentsaluzzo.com/2013/07/01/des-macros-pour-simplifier-les-proprietes/ In English (Google Translate) : http://translate.google.fr/translate?sl=fr&tl=en&js=n&prev=_t&hl=fr&ie=UTF-8&u=http%3A%2F%2Fwww.vincentsaluzzo.com%2F2013%2F07%2F01%2Fdes-macros-pour-simplifier-les-proprietes%2F&act=url

https://gist.github.com/2952892 # Mac OS X Finder and whatnot .DS_Store # Sparkle distribution Private Key (Don’t check me in!) dsa_priv.pem # […]

Installation and setup new project If you go to main React-native site, you can see these steps below to setup: […]

iOS has an automatic feature to detect phone numbers and link them to a phone call by clicking on them. […]

Building static libraries (and frameworks) can be a pain in the ass. This amazing article just saved my life: https://github.com/jverkoey/iOS-Framework/#walkthrough […]

To add your own pictures to the simulator, get the simulator running and then drag your image onto the simulator. […]

NSString* bundlePath = [[NSBundle mainBundle] bundlePath]; NSString* path = [NSString stringWithFormat:@”%@/CoreDataSourceFile.sqlite”, bundlePath]; SQLiteDatabase *database = [[SQLiteDatabase alloc] initWithPath:path]; NSArray *result […]

UIImageView * tableHeader = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@”header.png”]]; [areasTableView setTableHeaderView:tableHeader]; UIImageView * tableFooter = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@”footer.png”]]; [areasTableView setTableFooterView:tableFooter];

Some random comments about version numbers in general and a simple script and work flow to create them for your […]

– (BOOL)isPushEnabled { UIApplication *application = [UIApplication sharedApplication]; return application.enabledRemoteNotificationTypes != UIRemoteNotificationTypeNone; } Example: NSLog(@”APNS are %@enabled.”, [self isPushEnabled] ? […]

When a notification is posted, change the background color of HeavyViewController.m RotationAppDelegate.m UIDevice *device = [UIDevice currentDevice]; [device setProximityMonitoringEnabled:YES]; // […]