如何在Apple TV上的AVPlayerViewController选项卡栏菜单中设置颜色样式?

时间:2016-08-23 23:16:10

标签: uitabbar tvos tabbar avplayerviewcontroller

Apple TV上的AVPlayerViewController标签栏菜单如下:

enter image description here

向下滑动控件时出现。

我想将其背景颜色更改为橙​​色。此外,我想将字符串的颜色更改为橙​​色。

我能够在TabBarViewController的标签栏中使用以下代码实现此目的:

[UITabBarItem appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName : [UIColor whiteColor] }
                                                 forState:UIControlStateNormal];
[[UITabBarItem appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName : [UIColor orangeColor] }
                                                 forState:UIControlStateFocused];

 [[UITabBar appearance] setBarTintColor:[UIColor blackColor]];
 [[UITabBar appearance] setTintColor:[UIColor blackColor]];

我怎样才能做到这一点?

0 个答案:

没有答案