Hello,
I have a UITableView displaying a data set that is sectioned by date. Since the data span across a few years there are thousands of sections. When showing the data using NSFetchedResultsController, I noticed that tableView( _:numberOfRowsInSection: ) was called for all sections multiple times. This has slowed down the app significantly.
Is there a workaround for this problem?
Thanks!