Skip to content

Instantly share code, notes, and snippets.

@blixt
Created January 27, 2015 04:17
Show Gist options
  • Select an option

  • Save blixt/3544f8491f0b25153c45 to your computer and use it in GitHub Desktop.

Select an option

Save blixt/3544f8491f0b25153c45 to your computer and use it in GitHub Desktop.
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView.contentOffset.x > 0) {
scrollView.contentOffset = CGPointZero;
}
self.buttonsView.frame = CGRectMake(scrollView.contentOffset.x, 0, 160, self.buttonsView.frame.size.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment