Skip to content

Instantly share code, notes, and snippets.

View burczyk's full-sized avatar

Kamil Burczyk burczyk

  • Kraków, Poland
View GitHub Profile
@burczyk
burczyk / iPhone 5 detection
Last active December 14, 2015 22:38
Check for iPhone 5. Copy of http://stackoverflow.com/questions/12535471/detect-iphone-5-4-screen, just to have it in one place :)
#define IS_IPHONE5 (([[UIScreen mainScreen] bounds].size.height-568)?NO:YES)
@burczyk
burczyk / instantiate VC from Storyboard
Last active December 10, 2015 09:08
iOS macro for easy instantiate UIViewController by name. Usage: INSTANTIATE(@"MyViewController");
#define INSTANTIATE(viewController) [[UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil] instantiateViewControllerWithIdentifier:viewController];