Within my ObjC code, I am calling a function which has an argument of type bool
(not BOOL
).
Should I be passing YES
to this argument from my ObjC code, or would passing true
should be correct?
This question is about conventions, not functional correctness.