提问人:ashish 提问时间:11/9/2023 更新时间:11/9/2023 访问量:5
tvos:更改 UIButton 的焦点颜色
tvos: change focused color of UIButton
问:
如何更改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
}
}
但是按钮聚焦时的背景仍然是白色的
答: 暂无答案
下一个:汉堡菜单无法切换
评论