Is there any technical reason why Objective-C uses YES and NO instead of 1 and 0, or is it simply to make it more readable?
(For reference) [button setAttr:YES]; Sounds nicer IMHO then... [button setAttr:TRUE]; |
|||
|
|
|
C (on which Objective-C is based) didn't have a boolean type until C99. Objective-C was created in the 80s and defined it's own boolean type. |
|||
|
|
|
The same reason most languages use Really, if you think about it, we're talking about:
It's simply nicer to read. |
|||
|
It's just syntax, there's no technical reason for it. They just use YES/NO for their BOOL instead of true/false like c++ does. |
|||
|
|
|
It's the same as true/false.. Don't ask me why they reinvented the wheel and changed the names. My pesonal guess is, that the language designer thought it would be cool to be different... (Yes, I know I will get downvotes from the fan-boys).. |
|||||||||||
|