Is there any way to change background color of page control in tvOS?
NOTE: i want to set background color as clear color
I hav
This transparent background is a subview in UIPageControl of type UIVisualEffectView. You could remove it like this:
for subview in pageControl.subviews { if subview.isKindOfClass(UIVisualEffectView) { subview.removeFromSuperview() } }