Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

chrono1081

macrumors G3
Original poster
Hi guys.

I've never written lots of debugging code before (probably because I am only a hobbyist 😉 ) but now that my projects are getting quite large I decided to start doing so.

I know in some IDEs you can put a symbol or special syntax in front of a line of code (like a line that writes to console or something) and with one command you can remove all of it from the final build. I'm sure XCode has a similar feature but I can't seem to find it anywhere.

I've never used it so maybe its done with a macro instead of in the IDE but I know people out there do it and I want to start since it will make my life easier😀

Does anyone know what I'm talking about or have any tips where I can find such information? I'm not having much luck : /
 
You could just incase your debug code in:

Code:
#ifdef DEBUG
// insert code here
#endif

and then just delete the define for the production build.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.