insertRowsAtIndexPaths:poolIndex 禁止动画
加上performWithoutAnimation即可
[UIView performWithoutAnimation:^{
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:poolIndex withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];
}];
发表回复