I want to Enable the NSLog only in Debug Mode. I need to restrict NSLog in Distribution and Release mode.
I am using the code below,
#ifdef DEBUG
# define NSLog(...) NSLog(__VA_ARGS__);
#else
# define NSLog(...)
#endif
But it's not working. anyone please explain me as brief as possible. Where should i use the code in every NSLog statement or Every class or only in .PCH class..
Thanks for your consideration and Effort
