I would like to change dot indicator to Segmented control. Is it possible? And how? I know that I can customize dots like this:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...
UIPageControl *pageControl = [UIPageControl appearance];
pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
pageControl.backgroundColor = [UIColor blueColor];
...
}
But I want it change for whole new control. If it isn't possible than what would be to best way to create same UIPageController with UIPageViewControllerTransitionStyleScroll but with Segmented control? Thanks