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 :
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
Post a Comment