I want to do something like this:
NSLog(@\"You got: %x\", booleanValue);
where x is the specifier. But I can\'t find one! I want to avoid:
Here are two things that work:
NSLog(@"You got: %@",booleanValue ? @"YES" : @"NO");
or you can cast:
NSLog(@"You got: %d", (int)booleanValue);
Which will output 0 or 1