Example:
#ifdef FREE_VERSION
tf.text = @"Free";
NSLog(@"FREE VERSION");
#else
tf.text = @"Paid";
NSLog(@"PAID VERSION");
#endif
The first part looks fine in Xcode.
tf.text = @"Free";
NSLog(@"FREE VERSION");
is syntax-highlighted. However, the second part is not:
tf.text = @"Paid";
NSLog(@"PAID VERSION");
Is there a setting like "Don't do syntax highlighting in #else parts of conditional cimpilation code"?