Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to print value of Boolean flag in NSLog?

share|improve this question

4 Answers

up vote 144 down vote accepted

I do this in my code:

BOOL flag = YES;
NSLog(flag ? @"Yes" : @"No");

?: is the ternary conditional operator of the form:

condition ? result_if_true : result_if_false

Substitute actual log strings accordingly where appropriate.

share|improve this answer
18  
Easy to make this a macro, too: #define StringFromBOOL(b) ((b) ? @"YES" : @"NO") – Josh Caswell Jun 15 '11 at 18:36

'%d', 0 like false, 1 like true

BOOL b; 
NSLog(@"Bool value: %d",b);

or

NSLog(@"bool %s", b ? "true" : "false");
share|improve this answer

Booleans are nothing but integers only, they are just type casted values like...

typedef signed char     BOOL; 

#define YES (BOOL)1
#define NO (BOOL)0

BOOL value = YES; 
NSLog(@"Bool value: %d",value);

If output is 1,YES otherwise NO

share|improve this answer
No, bool is signed char. Your expression could potentially evaluate incorrectly if a value other than 0 or 1 is supplied. – CodaFi Jun 3 '12 at 5:30

Apple's FixIt supplied %hhd, which correctly gave me the value of my BOOL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.