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
I would do this
#define EnableNSLog 1 #if EnableNSLog == 0 #define NSLog // #elif EnableNSLog == 1 #warning Disable NSLog #endif
This should generate a warning message to remind me to disable NSLog before final release.
NSLog