Skip to content

Instantly share code, notes, and snippets.

@leoiphonedev
Created January 18, 2017 10:35
Show Gist options
  • Save leoiphonedev/ef0c057d0739634cc78e27ace794a634 to your computer and use it in GitHub Desktop.
Save leoiphonedev/ef0c057d0739634cc78e27ace794a634 to your computer and use it in GitHub Desktop.
Implementing scroll view delegate so that when user scroll to next page we change indicator of UIPageControl
- (void)scrollViewDidEndDecelerating:(UIScrollView *)sender {
[self setIndiactorForCurrentPage];
}
-(void)setIndiactorForCurrentPage
{
uint page = scrollView.contentOffset.x / SCROLLWIDTH;
[pageControl setCurrentPage:page];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment