Add this to your {App}-prefix.pch file
#ifndef __OPTIMIZE__
# define NSLog(…) NSLog(__VA_ARGS__)
#else
# define NSLog(…) {}
#endif
__OPTIMIZE__ only be set on release of build your app.
Add this to your {App}-prefix.pch file
#ifndef __OPTIMIZE__
# define NSLog(…) NSLog(__VA_ARGS__)
#else
# define NSLog(…) {}
#endif
__OPTIMIZE__ only be set on release of build your app.