Skip to content

Instantly share code, notes, and snippets.

@bonty
Created August 6, 2013 11:13
Show Gist options
  • Save bonty/6163627 to your computer and use it in GitHub Desktop.
Save bonty/6163627 to your computer and use it in GitHub Desktop.
ReleaseビルドでNSLog()を無効にする
#ifdef NS_BLOCK_ASSERTIONS
#ifndef NSLog
// NSLogを無効にする
#define NSLog( m, args... )
#endif
#else
#ifndef NSLog
// ちょっと便利にする
#define NSLog( m, args... ) NSLog((@"%s (%d) " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);t
#endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment