美文网首页
iOS12 VS iOS13 之闪跳[reloadSection

iOS12 VS iOS13 之闪跳[reloadSection

作者: 你飞跃俊杰 | 来源:发表于2020-05-14 15:13 被阅读0次

https://developer.apple.com/ios/whats-new/
iOS13更新后修复了调
reloadSection:Section withRowAnimation:UITableViewRowAnimationAutomatic];
会闪跳

关闭动画,如果有选择状态则需保存选择状态
[UIView performWithoutAnimation:^{
NSIndexSet *reloadSet = [NSIndexSet indexSetWithIndex:1];
[self.workTable reloadSections:reloadSet withRowAnimation:UITableViewRowAnimationNone];
}];
在iOS112中实际是

相关文章

网友评论

      本文标题:iOS12 VS iOS13 之闪跳[reloadSection

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