Skip to content

Instantly share code, notes, and snippets.

@gronnbeck
Created September 4, 2012 08:03
Show Gist options
  • Save gronnbeck/3618298 to your computer and use it in GitHub Desktop.
Save gronnbeck/3618298 to your computer and use it in GitHub Desktop.
#if STAGING
#if TARGET_IPHONE_SIMULATOR
NSString *baseString = @"www.hoopladev.no/";
#else
NSString *baseString = @"www.hoopladev.no/";
#endif
#else
#if DEVELOP
#if TARGET_IPHONE_SIMULATOR
NSString *baseString = @"dev.hoopla.no/";
#else
NSString *baseString = @"dev.hoopla.no/";
#endif
#else
#if TARGET_IPHONE_SIMULATOR
NSString *baseString = @"prod.hoopla.no/";
#else
NSString *baseString = @"prod.hoopla.no/";
#endif
#endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment