Which is the best way to handle creating an object to live in a retained property? I\'ve included several examples.
Assume the property is:
@property
self.myProperty = [[MyClass alloc] init];
Use ARC to generate your releases and retains at compile time.