What formatter is used for boolean values?
EDIT:
Example: NSLog(@\" ??\", BOOL_VAL);, what is ?? ?
NSLog(@\" ??\", BOOL_VAL);
??
I created a category of NSString with this
+ (instancetype)stringWithBool:(BOOL)boolValue { return boolValue ? @"YES" : @"NO"; }
And use it like this:
[NSString stringWithBool:boolValue];