My UITableView
is scrolling up once I add a new comment to CoreData. NSFetchedResultsController knows about it, puts this comment at the bottom of the table, an
I found something that worked for me. I encountered the same problem, and my estimatedRowHeight was 33 and all of my cells are greater than 33.
I just changed my estimatedRowHeight to my maximum cell height(or greater than your maximum cell height)
self.table.estimatedRowHeight = 310
self.table.rowHeight = UITableViewAutomaticDimension
worked like a charm, all cells are now autoresizing and uitableview is not scrolling to top or bottom when core data performs an update/delete/insert