Open orta opened 10 years ago
@property (nonatomic, strong, readwrite) Fair *fair;
Lets say we want to ensure that it is always in the order is always accessibility, atomicness, type then ideally ( there are only a few permutations ) obcd should be able to tell you the format is wrong.
accessibility, atomicness, type
Thus @property (nonatomic, strong, readwrite) Fair *fair; = warning @property ( readwrite, nonatomic, strong) Fair *fair; = pass
@property ( readwrite, nonatomic, strong) Fair *fair;
@property (nonatomic, strong, readwrite) Fair *fair;
Lets say we want to ensure that it is always in the order is always
accessibility, atomicness, type
then ideally ( there are only a few permutations ) obcd should be able to tell you the format is wrong.Thus
@property (nonatomic, strong, readwrite) Fair *fair;
= warning@property ( readwrite, nonatomic, strong) Fair *fair;
= pass