Closed sanjayrathore36 closed 8 years ago
I'm not entirely sure what's going wrong in your case but I have never had problems with large number of pages. Maybe you can post some sample code so I can see what's going on.
On the other hand, the pageViewController's scrollView defaults to UIScrollViewDecelerationRateFast so I'm not sure why you are setting it https://github.com/stefanceriu/SCPageViewController/blob/master/SCPageViewController/SCPageViewController.m#L104
I have also run your example it has same issue . Steps to reproduce
Try enabling both continuousNavigation and paging and see if that fixes the problem.
[self.pageViewController setContinuousNavigationEnabled:YES];
[self.pageViewController setPagingEnabled:YES];
If there are lots of pages and when you try to swap/slide pages fastly it does not work very well. Pages does not changes. I have also set self.scrollView.decelerationRate = UIScrollViewDecelerationRateFast; but does not work very well.