美文网首页
iOS刷新tableView抖动问题

iOS刷新tableView抖动问题

作者: 华子1889 | 来源:发表于2020-07-29 10:56 被阅读0次

刷新tableview

[UIView performWithoutAnimation:^{
  [tableView beginUpdates];
  [tableView endUpdates];
}];

yykit中也有方法能刷新,传入一个要处理的block

@implementation UITableView (YYAdd)
- (void *)updateWithBlock:(void *(^)(UITableView *tableView))block {
  [self beginUpdates];
  block(self);
  [self endUpdates];
}

UICollectionView 刷新高度 抖动问题解决方法

[UIView setAnimationsEnabled:NO];
    [self.collectionView performBatchUpdates:^{
    [self.collectionView reloadInputViews];
} completion:^(BOOL finished) {
    [UIView setAnimationsEnabled:YES];
}];

相关文章

网友评论

      本文标题:iOS刷新tableView抖动问题

      本文链接:https://www.haomeiwen.com/subject/wzchrktx.html