How to change focus programmatically in tvOS
问题 I am developing a tvOS app in swift. I am using UITabBarController in the app. My requirement is to hide the tabbar automatic after 10 seconds and focus can move to AVPlayerViewController inside the tabbar item. I tried to override preferredFocusedView , but focus cannot move to AVPlayerViewController . func updateFocus() { self.playerController.view.hidden = false self.playerController.view.alpha = 1.0 self.playerController.view.userInteractionEnabled = true self.playerController.view.layer