Skip to content

Instantly share code, notes, and snippets.

@jhurliman
Created June 28, 2014 08:04
Show Gist options
  • Save jhurliman/e4b4ada0eb22776e6c4c to your computer and use it in GitHub Desktop.
Save jhurliman/e4b4ada0eb22776e6c4c to your computer and use it in GitHub Desktop.
Compile-time string concatenation in Objective-C
#ifdef DEBUG
#define kAPIEndpointHost @"http://example.dev"
#else
#define kAPIEndpointHost @"http://www.example.com"
#endif
#define kAPIEndpointLatest (kAPIEndpointHost @"/api/latest_content")
#define kAPIEndpointMostPopular (kAPIEndpointHost @"/api/most_popular")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment