tableView在reloadRowsAtIndexPaths時默認附加一個fade隱式動畫
?? //解決刷新跳動問題
```
? ? ? ? ? ? [UIView performWithoutAnimation:^{
?? ? ? ? ? ? ? [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
? ? ? ? ? ? }];
···