UITableView reloadRowsAtIndexPaths hides row

Viewed 2264

I use UITableView with static cells. If I use reloadData, than everything is OK.

If I try reloadRowsAtIndexPaths it hides row. Row appears if I drag tableView up-down(when cell is updated).

3 Answers

I solved this by removing animation

tableView.reloadRows(at: [yourIndexPath], with: UITableView.RowAnimation.none)

Hope this helps to anyone searching for this.

Related