Let's say I have a strong property like so:
@interface Foo
@property (strong, nonatomic) NSArray *myArray;
@end
And, in my initializer, I set myArray like so:
myArray = [NSArray array];
Is this safe? Will ARC take care of properly retaining myArray for me?
The reason I ask is that I have a project where myArray isn't properly retained in this scenario, and I get a bad memory access down the road.
But, if I use
myArray = [[NSArray alloc] init];
then all is well.
init[With...]method, correct? – Josh Caswell Jan 17 '12 at 21:40