What formatter is used for boolean values?
EDIT:
Example: NSLog(@" ??", BOOL_VAL);, what is ?? ?
|
What formatter is used for boolean values? EDIT: Example: |
|||
|
|
One way to do it is to convert to strings (since there are only two possibilities, it isn't hard):
I don't think there is a format specifier for boolean values. |
|||||||||||||||||
|
|
I would recommend
because, um, |
|||
|
In Objective-C, the
So you can print them using the Or you can just use a string, as suggested in other answers. |
||||
|
Use the integer formatter
|
|||
|
|
|
Format strings for use with NSLog and [NSString stringWithFormat] are documented here: BOOL/bool/boolean are not even mentioned... |
|||
|
|
|
Add this macro to your .h file
Now you are ready to go...
|
||||
|
|