iosuitableviewreloaddata

reloadData only on tableView visible cells


Is that possible? To reload only the cells that are visible in order to do it more efficient.


Solution

  • That's how table views work by default. The UITableView class never loads cells until they're about to appear onscreen, even when you call reloadData.