The compiler complains about this, after I activated all kind of warnings:
I create an NSNumber like this:
NSNumber *num = [NSNumber numberWithBool:YES];
warning: passing argument 1 of 'numberWithBool:' with different width due to prototype
it complains about the value I provided. What's wrong with "YES"? What does that mean?