Guest User

Untitled

a guest
Mar 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. [UIView beginAnimations:@"animation" context:nil];
  2. [UIView setAnimationDuration:4.f];
  3. [CATransaction begin];
  4. [tableView beginUpdates];
  5. [tableView endUpdates];
  6. [tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
  7. [CATransaction commit];
  8. [UIView commitAnimations];
Add Comment
Please, Sign In to add comment