Apple TV上的AVPlayerViewController标签栏菜单如下:
向下滑动控件时出现。
我想将其背景颜色更改为橙色。此外,我想将字符串的颜色更改为橙色。
我能够在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]];
我怎样才能做到这一点?