I have four pages in a UIPageViewController, and I\'d like to hide the dots on the last page. I successfully made a function that gets called on the last page of the UIPageV
Check out the accepted answer here to get the UIPageControl (the view with the dots):
Access the UIPageControl created by iOS6 UIPageViewController?
Then, once you have the pageControl, in pageViewController: didFinishAnimating: you can check if it's the last page, and if so set pageControl.hidden = true.