UIPageControl 具有 tvOS 背景

UIPageControl has background on tvOS

在我的一个游戏中,我使用 UICollectionView 作为关卡 select 菜单。我最近以编程方式向其中添加了一个 UIPageControl。

     /// Page control
func setupPageControl() {
    pageControl.hidesForSinglePage = true
    pageControl.numberOfPages = DataSource.worlds
    pageControl.translatesAutoresizingMaskIntoConstraints = false
    pageControl.currentPageIndicatorTintColor = DataSource.pageControlColors[pageControl.currentPage]
    pageControl.pageIndicatorTintColor = UIColor.white.withAlphaComponent(0.8)
    pageControl.addTarget(self, action: #selector(didPressPageControl), for: .valueChanged)
    view.addSubview(pageControl)

    let leading = NSLayoutConstraint(item: pageControl, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: 0)
    let trailing = NSLayoutConstraint(item: pageControl, attribute: .trailing, relatedBy: .equal, toItem: view, attribute: .trailing, multiplier: 1, constant: 0)

    let bottomConstant = Device.isPad ? view.frame.width / 9 : view.frame.width / 17
    let bottom = NSLayoutConstraint(item: pageControl, attribute: .bottom, relatedBy: .equal, toItem: view, attribute: .bottom, multiplier: 1, constant: -bottomConstant)
    view.addConstraints([leading, trailing, bottom])
}

在 iOS 上一切正常,但在 tvOS 上,PageController 有一个半透明的背景,可以延伸到整个屏幕。

我怎样才能关闭它?我尝试设置 pageControl 背景颜色,但这似乎不起作用。

像往常一样,当我 post 一个问题时,我会在一分钟后找到答案。

您可以通过调用此方法删除 tvOS 上的背景

#if os(tvOS)
   for subview in pageControl.subviews {
       let effectView = subview as? UIVisualEffectView
       effectView?.removeFromSuperview()
   }
#endif