I\'d like to do the following in Xcode:
Find all NSLog commands without comments, and replace it with //NSLog...
In other words, I want to comment all NSLog
try this also:
#define NSLog(@"YOUR MESSAGE HERE!") do { } while (0)