tvos:更改 UIButton 的焦点颜色

tvos: change focused color of UIButton

提问人:ashish 提问时间:11/9/2023 更新时间:11/9/2023 访问量:5

问:

如何更改tvos swift UI的默认白色布顿焦点选择?

override func didUpdateFocus(in context: UIFocusUpdateContext, with coordinator: UIFocusAnimationCoordinator) {
    if let nextFocusedView = context.nextFocusedView {
        playAllOutlet.backgroundColor  = UIColor.red
        shuffleBtnOutlet.backgroundColor = UIColor.green
    
    }
    
    if let previousFocusView = context.previouslyFocusedView {
           playAllOutlet.backgroundColor  = UIColor.red
        shuffleBtnOutlet.backgroundColor = UIColor.green
    }
}

但是按钮聚焦时的背景仍然是白色的

颜色 背景 UIBUTTON Focus tvOS

评论


答: 暂无答案