I\'m having a problem with some code in the loadView: method of one of my view controllers. Essentially I have a view which centres itself in a larger view (on an iPad) and
The over-releasing could be occurring during the objects life time and not just when they're being created. A few tips:
nilrelease/autorelease. Personally I prefer to have [[[Class alloc] init] autorelease] all on 1 line.release/autorelease. Let's Build NSAutoreleasePool is a good place to start.