if I have a property such as
@property (nonatomic, retain) NSArray *myArray;
and then I set it as follows
[self setMyArray:[[NSArray alloc]init]];
do I have a retain count of 2?
When I release it in my dealloc
method will there still be a retain count of 1?