On the heels of the previous post, here’s a little snippit I picked up from Marek Bell to quiet NSLog() output in release builds.
Add this to your {MyApp}-prefix.pch file
#ifndef __OPTIMIZE__
# define NSLog(…) NSLog(__VA_ARGS__)
#else
# define NSLog(…) {}
#endif
The reasoning behind using __OPTIMIZE__ is that it’s set only on release builds of your app, not in debug versions. It’s very simple and allows you to use NSLog() instead of having to come up with your own version.