开始代码
[self.knGroupTableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationNone];
修改为
[UIView performWithoutAnimation:^{
[self.knGroupTableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationNone];
}];
[UIView performWithoutAnimation:^{
[self.knGroupTableView reloadData];
}];