Should all NSLog() calls be deleted in the final app for iTunes?
In my iOS app, I\'ve got lots of NSLog() for debug. Should I conditionally code them out before uplo
Try using this for your NSLogs:
#define DEBUG #ifdef DEBUG NSLog(@"Your tests outputs"); #endif