What is the difference between (retain, nonatomic) and (nonatomic, retain) in code such as this:
@property (retain, nonatomic) YellowViewController *yellowViewController;
?
What is the difference between (retain, nonatomic) and (nonatomic, retain) in code such as this:
@property (retain, nonatomic) YellowViewController *yellowViewController;
?
There is no difference -- the order of property attribute specifiers is not important.