Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save edwardean/8d6bab9d4f7700ba0ce73e3752430ae5 to your computer and use it in GitHub Desktop.
Save edwardean/8d6bab9d4f7700ba0ce73e3752430ae5 to your computer and use it in GitHub Desktop.
Changing UIScrollView contentOffset without triggering scrollViewDidScroll:
CGPoint desiredContentOffset = <#content offset#>;
CGRect scrollBounds = scrollView.bounds;
scrollBounds.origin = desiredContentOffset;
scrollView.bounds = scrollBounds;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment