Increase the size of the indicator in UIPageViewController's UIPageControl

前端 未结 6 2024
予麋鹿
予麋鹿 2020-12-08 02:47

Is it possible to Increase the size of the indicator in UIPageViewController?

I have this:

And my requirement is this:

6条回答
  •  清歌不尽
    2020-12-08 03:22

    Add an extension to the page controller

    extension UIPageControl {
        func customPageControl(dotWidth: CGFloat) {
            for (pageIndex, dotView) in self.subviews.enumerated() {
                dotView.frame.size = CGSize.init(width: dotWidth, height: dotWidth)
            }
        }
    }
    

提交回复
热议问题