I need change the labels colors of MPMediaPickerController
item, on iOS 7 , im using Xcode5
, what can i do?.
My code of the creation of MPMediaPickerController
is:
- (IBAction)addSongs:(id)sender {
MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeMusic];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
}
I was trying with this but not works: https://gist.github.com/acidlemon/1955332
Examples:
Thanks in advance.