insertRowsAtIndexPaths:poolIndex 禁止动画

  • 内容
  • 评论
  • 相关
加上performWithoutAnimation即可
[UIView performWithoutAnimation:^{
    [self.tableView beginUpdates];
    [self.tableView insertRowsAtIndexPaths:poolIndex withRowAnimation:UITableViewRowAnimationNone];
    [self.tableView endUpdates];
}];

评论

0条评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注