Insert UITableView row without ANY animation

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


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-07 02:51

    This also works

    [UIView performWithoutAnimation:^{
        [self.tableView insertRowsAtIndexPaths:indexPaths:withRowAnimation:UITableViewRowAnimationNone];
    });
    

提交回复
热议问题