Skip to content

Instantly share code, notes, and snippets.

@psobko
Created October 29, 2013 19:15
Show Gist options
  • Save psobko/7220831 to your computer and use it in GitHub Desktop.
Save psobko/7220831 to your computer and use it in GitHub Desktop.
UITableView
//Detect when tableview is updating
[CATransaction begin];
[CATransaction setCompletionBlock:^{
// animation has finished
}];
[tableView beginUpdates];
// do some work
[tableView endUpdates];
[CATransaction commit]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment