davdroman / DRPageScrollView

Block-driven paginated scroll view
MIT License
295 stars 34 forks source link

Working with UIPageControl #3

Closed Glideh closed 10 years ago

Glideh commented 10 years ago

Is there a page change event that we could listen to so we can update a UIPageControl ?

Glideh commented 10 years ago
#...
paginatedScrollView.delegate = self;
#...
- (void)scrollViewDidEndDecelerating:(DRPaginatedScrollView *)scrollView
{
    self.pageControl.currentPage = scrollView.currentPage;
}