views:

88

answers:

1

What is the difference between (retain, nonatomic) and (nonatomic, retain) in code such as this:

@property (retain, nonatomic) YellowViewController *yellowViewController;

?

+6  A: 

There is no difference -- the order of property attribute specifiers is not important.

walkytalky