uitabbar - How Can I style the colors in the AVPlayerViewController Tab Bar Menu on Apple TV? -


the avplayerviewcontroller tab bar menu on apple tv following :

enter image description here

it appears when swipe down on control.

i want change background color orange. want change color of strings orange when it's focused.

i able achieve in tabbarviewcontroller's tab bar following code :

[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]]; 

how can achieve this?


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -