Skip to content

Instantly share code, notes, and snippets.

@ajjames
Last active August 29, 2015 13:56
Show Gist options
  • Save ajjames/9080547 to your computer and use it in GitHub Desktop.
Save ajjames/9080547 to your computer and use it in GitHub Desktop.
DLog: Obj-C Logging Macros
#ifdef DEBUG
#define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#define DLog(...)
#define NSLog(...)
#endif
#define IS_PAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad ? YES : NO)
#define IS_PHONE !IS_PAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment