LoginSignup
3
3

More than 5 years have passed since last update.

[tvOS]UIPageControlの背景を剥がす

Posted at

tvOSのUIPageControlには背景ブラーが付いており、必要ない場合は剥がす必要があります。

スクリーンショット 2015-10-26 18.47.03.png

        for v in pageControl.subviews {
            if let subView = v as? UIVisualEffectView {
                subView.removeFromSuperview()
            }
        }

正体はUIVisualEffectViewなので、探してremoveFromSuperviewでイナフ

スクリーンショット 2015-10-26 18.47.16.png

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3