Thanks for the reply.
I still can't quite get it working.
I did a test and #defined _TEST_ in the header and _DEBUG_ only through the Development build settings for my Target.
Then I added the following in my code:
Code:
#ifdef _DEBUG_
NSLog(@"tagText");
#endif
#ifdef _TEST_
NSLog(@"_TEST_ is defined as a macro");
#endif
but only the second logging happens.
Am I missing something?