Skip to content

Instantly share code, notes, and snippets.

@victorchee
Created December 11, 2015 06:51
Show Gist options
  • Save victorchee/2d2f3666993ddc9970e4 to your computer and use it in GitHub Desktop.
Save victorchee/2d2f3666993ddc9970e4 to your computer and use it in GitHub Desktop.
Scroll with page control.
#pragma mark - UIScrollViewDelegate
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
NSInteger pageIndex = lroundf(scrollView.contentOffset.x / CGRectGetWidth(scrollView.frame));
pageControl.currentPage = pageIndex;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment