Insert UITableView row without ANY animation

前端 未结 5 2096
感情败类
感情败类 2021-02-07 02:05
[self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:row inSection:0]] 
                      withRowAnimation:UITableViewRowAnimationNone];
         


        
5条回答
  •  不知归路
    2021-02-07 02:46

    If you update the UITableView's dataSource and call [tableView reloadData] instead of manually inserting the row, the table will refresh without any animation.

提交回复
热议问题