Change background color for page control

前端 未结 3 1818
甜味超标
甜味超标 2021-01-28 12:54

Is there any way to change background color of page control in tvOS?

NOTE: i want to set background color as clear color

I hav

3条回答
  •  春和景丽
    2021-01-28 13:37

    The fix Alexander mentioned didn't work for me when too many pages had to be displayed. I would rather set the effect to nil:

    for subview in pageControl.subviews {
        guard let effectView = subview as? UIVisualEffectView else { continue }
        effectView.effect = nil
    }
    

提交回复
热议问题