What do atomic
and nonatomic
mean in property declarations? 属性声明中atomic
和nonatomic
是什么意思? atom
@property(nonatomic, retain) UITextField *userName; @property(atomic, retain) UITextField *userName; @property(retain) UITextField *userName;
What is the operational difference between these three? 这三个之间的操做区别是什么? spa