I have a strange situation which I hope someone can shed some light on. I'm implementing the NSCoding protocol in a custom object, and I'm running into memory leaks in initWithCoder:. I have something like this:
NSString* titleTemp = [aDecoder decodeObjectForKey:@"title"];
if(titleTemp) {
[self setTitleString:titleTemp];
} else {
[self setTitleString:[NSString string]];
}
I have lots of other properties of this object, some are arrays, some strings, and some primitives (doubles, ints), and I am consistently getting memory leaks in this method. Instruments tells me that the leak occurs in each decoding on the decodeObjectForKey: line. When you leak every single decoded object inside each custom class in an array of 10+ objects, the memory starts to add up.
But what really stumped me was that the output of this code:
NSString* titleTemp = [aDecoder decodeObjectForKey:@"title"];
NSLog(@"%i", titleTemp.retainCount);
is "3"!
Woah, where are all of those retains coming from? Beats me. But I'd love to know with all these leaks. Thanks!