Imagine I have a member variable
@property(nonatomic,retain)NSArray *array;
Now in my viewDidLoad I set up a simple array
array = [[NSArray alloc]initWithObjects:@"A",@"B","C",nil];
My retain count for array is going to be 1 right?
Now if I were to set up the array using the accessor method
self.array = [[NSArray alloc]initWithObjects:@"A",@"B","C",nil];
Is my retain count 2 because my accessor method bumps the retain count up by 1?
What's the convention for initializing member variables?