I know this is quite sad, but when I have an NSString and I want it to have an int value, I use the %dstring value inside of it. What do I use for BOOL. I tried %b, but that did nothing. What is it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
Just use %d, a BOOL is an integer. |
|||
|
If you want something more readable you could always define a macro to give you readable output
|
|||
|
|
|
It sounds like these correspond to You could use Note: This is from a C programmer's point of view; You might have to write those string constants slightly differently. If the |
||||
|
|
|
There's no specifier for booleans print_f ref here |
|||
|
|