iOS 11 UITableView delete rows animation bug

前端 未结 5 1224
情话喂你
情话喂你 2020-12-05 10:20

video of the tableview animation bug

I have a table view which expands/collapse its cells.

As of iOS 11, the tableView starts to behave strangely on insertio

5条回答
  •  温柔的废话
    2020-12-05 11:13

    I fixed it by using this code:

    self.tableView.beginUpdates()
    // ...
    self.tableView.endUpdates()
    self.tableView.layer.removeAllAnimations()
    

提交回复
热议问题