What are the default attributes for Objective-C properties?
cocoa-touch, objective-c
Solution
The default/implicit values are `atomic`, `readwrite`, and `assign`.
atomic
This means that the value is read/written atomically. Contrary to the somewhat popular misconception, atomicity does not equate to thread safety. In simple terms, it guarantees that the value you read or write will be read or written in whole (when the accessors are used). Even when you use accessors all the time, it's not strictly thread safe.
readwrite
The property is given a setter and a getter.
assign
This default is usually seen used for POD (Plain-Old-Data) and builtin types (e.g. `int`).
For `NSObject` types, you will favor holding a strong reference. In the majority of cases, you will declare the property `copy`, `strong`, or `retain`. `assign` performs no reference count operations. See also: http://clang.llvm.org/docs/AutomaticReferenceCounting.html#property-declarations
strong
The property may be implicitly `strong` under ARC in some cases:
A property of retainable object pointer type which is synthesized without a source of ownership has the ownership of its associated instance variable, if it already exists; otherwise, [beginning Apple 3.1, LLVM 3.1] its ownership is implicitly strong. Prior to this revision, it was ill-formed to synthesize such a property.
Problem
What are the default attributes for a properpty when you do not list any in objective C? Such as for example if I wrote this: ``` @property float value; ``` What would the defaults be, like is it read only, does it retain...etc.?
Related problems
- KVO vs NSNotification vs protocol/delegates?
- Is there a difference between an "instance variable" and a "property" in Objective-c?
- unowned vs. weak. Why we should prefer unowned?
- In Objective-C with ARC, is it true that we usually only need to specify nonatomic as property attributes?
- What does it mean for something to be thread safe in iOS?