I am using UIPageControl and trying to make the background transparent.
UIPageControl
UIPageControl *pageControl = [UIPageControl appearance]; pageControl.pageInd
It could work if you set the background color of the UIPageControl to a background image that looks the same as your VC's background color:
[UIPageControl appearance].backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"pageControllerBackground"]];