I have this retained property declared like this:
@property (nonatomic, retain) NSMutableDictionary *codes;
then I synthesize this:
@synthesize codes;
I use the property like this:
self.codes = [NSMutableDictionary dictionary];
Then, I forget to say [codes release];
in my dealloc
.
When I run Analyzer in XCode 4.3.2, this is not shown as an issue. My base SDK is iOS 5.1 and my compiler is Apple LLVM compiler 3.1
Why doesn't analyzer pick this up?