iOS12 VS iOS13 之闪跳[reloadSection
2020-05-14 本文已影响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中实际是