What formatter is used for boolean values?
EDIT:
Example: NSLog(@\" ??\", BOOL_VAL);, what is ?? ?
NSLog(@\" ??\", BOOL_VAL);
??
Add this inline function to your .h file:
.h
static inline NSString* NSStringFromBOOL(BOOL aBool) { return aBool? @"YES" : @"NO"; }
Now you are ready to go...
NSLog(@"%@", NSStringFromBOOL(BOOL_VAL));