0
votes
When should one use UITableView reloadData ? And defect associated ;)
You should minimize reloads in tableviews, and use it only when you cannot update the table other way.
For example when deleting a row you do not need a reload, just use deleteRowsAtIndexPath …
0
votes
How can I disable the UITableView selection highlighting?
From the UITableViewDelegate Protocol you can use the method willSelectRowAtIndexPath
and return nil if you don't want the row selected.
In the same way the you can use the willDeselectRow …
