I have a simple tableview that's displaying a NSMutableArray, but when a item is added I need to do a [self.tableView reloadData];
How do I make the UITableView to update when the array is updated, like if I use the CoreData (NSFetchedResultControlerDelegate i think it is that does the updates).
Or do I need to accept the reloadData call on everyplace that's updating the array?