@property(nonatomic, retain) NSMutableArray* playerList;
...
team.playerList = [[NSMutableArray alloc] initWithArray:self.playerList];
Is it a memory leak right?
So why couldn't the static analyzer choose this?
memory-management ios objective-c iphone static-analysis
Robert
source share