UIPageControl 有 tvOS 背景

问题描述 投票:0回答:2

在我的一款游戏中,我使用 UICollectionView 作为关卡选择菜单。我最近以编程方式向其添加了 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 有一个半透明的背景,延伸到整个屏幕。

enter image description here

如何关闭此功能?我尝试设置 pageControl 背景颜色,但这似乎不起作用。

swift tvos uipagecontrol
2个回答
2
投票

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

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

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

更改页面控件的背景颜色


0
投票

您可以将背景样式设置为最小。

pageControl.backgroundStyle = .minimal
© www.soinside.com 2019 - 2024. All rights reserved.