Skip to content

Instantly share code, notes, and snippets.

@KyonLi
Created March 22, 2017 02:20
Show Gist options
  • Save KyonLi/b8c4d0d98d761df85dc3bcc315e81f62 to your computer and use it in GitHub Desktop.
Save KyonLi/b8c4d0d98d761df85dc3bcc315e81f62 to your computer and use it in GitHub Desktop.
UITableView built-in animation complete callback
[CATransaction begin];
[CATransaction setCompletionBlock:^{
[_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
}];
[_tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
[CATransaction commit];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment