gpt4 book ai didi

ios - MPMediaPickerController 自定义标签和图标的颜色

转载 作者:行者123 更新时间:2023-11-29 10:46:54 25 4
gpt4 key购买 nike

我需要更改 MPMediaPickerController 项目的标签颜色,在 iOS 7 上,我正在使用 Xcode5,我该怎么办?

我创建 MPMediaPickerController 的代码是:

- (IBAction)addSongs:(id)sender {
MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeMusic];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
}

我正在尝试这个但没有用:https://gist.github.com/acidlemon/1955332

示例:enter image description here

enter image description here

提前致谢。

最佳答案

使用外观代理更改标签栏的 tintColor,例如:

[[UITabBar appearance] setTintColor:[UIColor yellowColor]];

要更改所有 View 的tintColor,包括您的标签,您可以在 AppDelegate.m 文件中执行以下操作:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UIView appearance] setTintColor:[UIColor yellowColor]];

return YES;
}

关于ios - MPMediaPickerController 自定义标签和图标的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22106313/

25 4 0