reloadData only on tableView visible cells

Samui picture Samui · Feb 7, 2011 · Viewed 20.9k times · Source

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

Answer

jlehr picture jlehr · Feb 7, 2011

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.