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中实际是
网友评论