I am confuzed by the memory management of instance members. I have a class with a ivar:
DetailedResultsTableViewController *detailedResultsTableViewControlle
When you have a retained property it increments the retain count on any self.myProperty =
Alloc also increments the retain count. So in your case the retain count is 2.
There a couple approaches.