我需要更改 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;
}
例子: