If I define an property and just do:
@property(nonatomic) UIButton* button;
then I think that it's an "assign" property. Is that correct?
|
|
If I define an property and just do:
then I think that it's an "assign" property. Is that correct?
|
||||
|
|
|
yes it is. |
||
|
|
|
default values of property params are assign, readwrite and "atomic" (there is no keyword "atomic". only nonatomic) |
||
|
|