@property definitions with ARC: Is strong default now? @property definitions with ARC: Is strong default now? xcode xcode

@property definitions with ARC: Is strong default now?


Yes, strong is the default in Xcode 4.3 and later. It's documented both in the LLVM docs and in Apple's guides to using properties and working with ARC.


When the property is a basic type, the default value is assign, when the property is a object type, the default value is strong