I have a readonly BOOL property. What is dominant naming pattern here?
Background: for plain old method declarations, the accepted pattern
- (BOOL)is
You'd want to use the one that works with KVO, KVC and bindings etc.
I remember reading that in the Docs that KVO et al. will look for is, set as well as get and many others like countOf<key>
is
set
get
countOf<key>
The KVC Compliance Checklist explains it much better than I could ever do.