刷新UITableView时UI乱跳的解决方案
作者:
缺舟 | 来源:发表于
2018-10-08 09:56 被阅读17次
- 方案一
//在AppDelegate中添加,可以通过以下方式禁用
if (@available(iOS 11.0, *)) {
UITableView.appearance.estimatedRowHeight = 0;
UITableView.appearance.estimatedSectionFooterHeight = 0;
UITableView.appearance.estimatedSectionHeaderHeight = 0;
}
- 方案二
[UIView performWithoutAnimation:^{
NSIndexSet *reloadSet = [NSIndexSet indexSetWithIndex:1];
[self.workTable reloadSections:reloadSet withRowAnimation:UITableViewRowAnimationNone];
}];
本文标题:刷新UITableView时UI乱跳的解决方案
本文链接:https://www.haomeiwen.com/subject/qrsdaftx.html
网友评论