我需要更改MPMediaPickerController中的图标的灰色,如果未选择它们,并且背景是不透明的,如褪色,我也需要删除它。
我正在使用ios7.1和下一个代码在我的viewController上显示MPMediaPickerController元素。
- (IBAction)addSongs:(id)sender {
MPMediaPickerController *picker = [[MPMediaPickerController alloc]
initWithMediaTypes:MPMediaTypeMusic];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
[self presentViewController:picker animated:YES completion:nil];
}
而此代码在AppDelegate上
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[[UIView appearance] setTintColor:[UIColor whiteColor]];
return YES;
}
例:
最佳答案
这和MPMediaPickerController customize the colors of the labels and icons一样
....
在应用程序委托中:
[[UIView appearance] setTintColor:[UIColor blueColor]];
该命令使用sillohouette图标设置选项卡栏,工具栏等的色调....您的选项卡栏似乎在黑暗的窗口背景下是半透明的....我也在我的应用程序中使用了mpmediapickercontroller,自移至IOS 7后,所有白色背景均具有默认设置。我相信这是您的windows.backgroundcolor我的设置为白色。
关于ios - 未选择图标的MPMediaPickerController图标的背景色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22134898/