Use the following code
#ifdef DEBUGGING # define DBLog(fmt,...) NSLog(@"%@",[NSString stringWithFormat:(fmt), ##__VA_ARGS__]); #else # define DBLog(...) #endif
Make sure the compiler flags are set correctly.
Also, when you checked the console, did you check if you use release mode?
zahreelay
source share