Apple recommends to declare a BOOL property this way:
@property (nonatomic, assign, getter=isWorking) BOOL working;
As I’m using Objective-C 2.0 properties and dot notation, I access this property using self.working. I know that I could also use [self isWorking] — but I don’t have to.
So, as I’m using dot notation everywhere, why should I define an extra property? Would it be okay to simply write
@property (nonatomic, assign) BOOL working;
Or do I have any benefits writing getter=isWorking in my case (usage of dot notation)?
Thanks!
Apple simply recommends declaring an
isXgetter for stylistic purposes. It doesn’t matter whether you customize the getter name or not, as long as you use the dot notation or message notation with the correct name. If you’re going to use the dot notation it makes no difference, you still access it by the property name:Or