UIPageControl not visible in iOS 14

UIPageControl not visible in iOS 14
Same for me, it was visible on iOS 13.X
iOS 14.0 has a new setting backgroundStyle for UIPageControl , when it is set to minimal all the dots are visible.
Code Block
let pc = UIPageControl()
...
  if #available(iOS 14.0, *) {
      pc.backgroundStyle = .minimal
  } else {
      // Fallback on earlier versions
  }

Have you added constraints. If not, please add them. PageControl was visible on iOS 12.x then after update, I noticed, it was missing. So by adding constraints, it became visible. You can try.

Experiencing the same issue too

UIPageControl not visible in iOS 14
 
 
Q