19
22

More than 5 years have passed since last update.

iOS リリースビルド時にNSLogを消す方法

Last updated at Posted at 2013-08-06

NSLogを残したままリリースするとXcodeのOrganizerのConsoleからログがみれてしまいます。

アプリ名-Prefix.pch
// Debbugログ出力切り替え
#ifdef DEBUG
# define NSLog(...) NSLog(__VA_ARGS__)
#else
# define NSLog(...) {}
#endif
19
22
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
22