Apple recommends to declare a BOOL property this way:
@property (nonatomic, assign, getter=isWorking) BOOL working;
As I\'m using Objective
Apple recommends for stylistic purposes.If you write this code:
@property (nonatomic,assign) BOOL working;
Then you can not use [object isWorking]. It will show an error. But if you use below code means
@property (assign,getter=isWorking) BOOL working;
So you can use [object isWorking] .