How to make a UIView focusable using the focus engine on Apple TV
问题 Is it possible to make a UIView focusable? Or should I just use a custom UIButton for all possible views? I tried to override canBecomeFocused but nothing happened. 回答1: So the problem was that I didn't notice that my cell got focus. To wrap this up, you need to implement 1) override canBecomeFocused 2) override "didUpdateFocusInContext:withAnimationCoordinator:" method to be able to highlight the cell as focused Swift 2.3: override func canBecomeFocused() -> Bool { return true } override