Objective-C : BOOL vs bool - Stack Overflow
Yup, BOOL is a typedef for a signed char according to objc.h. I don't know about bool, though. That's a C++ thing, right? If it's defined as a signed char where 1 is YES/true and 0 is NO/false, then I imagine it doesn't matter which one you use. Since BOO...