I want to hide the page control indicator on a certain VC and instead show a button with the text 'Get started'. The user has however still be able to navigate back into the page control.
I've tried this:
self.pageController = [UIPageControl appearance];
self.pageController.pageIndicatorTintColor = [UIColor redColor];
self.pageController.currentPageIndicatorTintColor = [UIColor greenColor];
if(self.pageIndex == 1){
self.pageController.hidden = YES;
NSLog(@"hide you!");
}
However, this doesn't work. setting self.pageController.hidden = YES
without the if statement works, and the nslog is triggered as well. It seems that somehow this can only be set once.
I also don't know how smooth this will be. I obviously don't want it to change when the user is fully arrived on the page itself, but in the transition toward it.
What is the best way to tackle this problem?
If you want to use the space where UIPageControl was located, you can change view's frame so page control is out of screen:
Use it in UIViewController you want with hidden page control (check for visibility is because viewWillAppear is called even when user starts swiping to other screen and then interrupts this action):