In c# I can use the following code to have code which only executes during debug build, how can I do the same in xcode?
if #DEBUG
{
// etc etc
}
|
|
In c# I can use the following code to have code which only executes during debug build, how can I do the same in xcode?
|
||
|
|
|
|
The NDEBUG symbol should be defined for you already in release mode builds
By using NDEBUG you just avoid having to specify a -D DEBUG argument to the compiler yourself for the debug builds |
||||||||||
|
|
|
You can use
You'll need to add I personally prefer doing |
|||
|
|
|
|
There is a very useful debugging technote: Technical Note TN2124 Mac OS X Debugging Magic http://developer.apple.com/technotes/tn2004/tn2124.html#SECENV which contains lots of useful stuff for debugging your apps. Tony |
||
|
|