In a Utilities class, I have the following method:
+ (Division *) getNationalDivision
{
Division *defaultDivision = [[[Division alloc] init] autorelease];
defaultDivision.Id = 0;
defaultDivision.name = @"National";
return defaultDivision;
}
I have a division allocted in my app delegate to store the division throughout the app, so in one of my view controllers I have:
appDel.currentDivision = [[Utilities getNationalDivision] retain];
In the app delegate .h I have:
@property (nonatomic, retain) Division *currentDivision;
In the app delegate .m I have:
currentDivision = [[Division alloc] init];
When I analyze, I get potential leak of an object that points to the above line. Any ideas? If I dont retain the national division, it doesnt work. Also, just to note, everything works fine. I just want to make sure I am not leaking something.
currentDivisionproperty is defined as. I presumeretain? In that case, the extraretainhere is very likely an over-retain. We'll know more with the@propertydefinition. – Ryan Wersal Jan 25 '12 at 17:32