如何停止隐藏在 tvos 中更改焦点的 TabBar
How to stop TabBar hidden in change focus in tvos
我正在 swift 开发 Apple TV 应用程序。我需要实施 TabBarController。在 apple tv 应用程序中,TabBar 隐藏在更改焦点中,但如果用户在应用程序中更改焦点,我想需要显示 TabBar。
怎么办?
在UITabBarController中使用该方法Class
override func didUpdateFocusInContext(context: UIFocusUpdateContext, withAnimationCoordinator coordinator: UIFocusAnimationCoordinator){
self.tabBar.hidden = false
}
我正在 swift 开发 Apple TV 应用程序。我需要实施 TabBarController。在 apple tv 应用程序中,TabBar 隐藏在更改焦点中,但如果用户在应用程序中更改焦点,我想需要显示 TabBar。 怎么办?
在UITabBarController中使用该方法Class
override func didUpdateFocusInContext(context: UIFocusUpdateContext, withAnimationCoordinator coordinator: UIFocusAnimationCoordinator){
self.tabBar.hidden = false
}