iOS 去除刷新分组动画
设置UITableViewRowAnimationNone还是有动画闪动效果
解决:
[UIView performWithoutAnimation:^{
NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex:index];
[self reloadSections:indexSet withRowAnimation:UITableViewRowAnimationNone];
}];