release-management

Can't Release NSFetchedResultsController in dealloc

I have two UITableViewControllers with a fairly simple ui flow. One UITableViewController loads another UITableViewController when you select an item in the first UITableViewController. (UITableViewController) List of Stories -> Select a Story -> (UITableViewController) List of Sentences In the second UITableViewController (MakeSen...

Why don't I have to release managedObjectContext in the 2nd TableViewController.

Hi all. I have two tableview controllers showing CoreData objects. One is a detail view (with sentences) one is an overview (with stories). Pick a Story -> See the Sentences. It looks like I was over-releasing my managedObjectContext; I originally released it in both TableViewControllers in dealloc and got a crash every third time I we...