I'm using garbage collection in Objective-C 2.0. Do I need to retain properties? Eg.
@property (nonatomic, retain) NSMutableArray *myArray;
Or is this enough:
@property (nonatomic) NSMutableArray *myArray;
I initialize the array like this:
self.myArray = [NSMutableArray array];