Skip to content

Instantly share code, notes, and snippets.

@cbess
Last active December 10, 2015 22:38
Show Gist options
  • Save cbess/4503317 to your computer and use it in GitHub Desktop.
Save cbess/4503317 to your computer and use it in GitHub Desktop.
Animate ScrollView with custom duration
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:3.7f];
self.scrollView.contentOffset = CGPointMake(77, 77);
[UIView commitAnimations];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment