vote up 1 vote down star

If I define an property and just do:

@property(nonatomic) UIButton* button;

then I think that it's an "assign" property. Is that correct?

flag

58% accept rate
You've asked several questions that are answered directly in Apple's documentation about properties; have you read developer.apple.com/documentation/Cocoa/… ? – smorgan Apr 30 at 14:19
Thanks for the link. I should read that. – Thanks Apr 30 at 15:00

2 Answers

vote up 2 vote down check

yes it is.

link|flag
It's probably clearer to just include all the attributes, though. – Mark Bessey Apr 30 at 17:08
vote up 4 vote down

default values of property params are

assign, readwrite and "atomic" (there is no keyword "atomic". only nonatomic)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.