Good day- I have some code that opens the MPMediaPickerController:
MPMediaPickerController *mediaPicker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeMusic];
mediaPicker.delegate = self;
mediaPicker.allowsPickingMultipleItems = NO;
// show media picker
[[[[UIApplication sharedApplication] keyWindow] rootViewController] presentViewController:mediaPicker animated:YES completion:NULL];
[mediaPicker release];
Since iOS7, the picker defaults to the 'playlists' tab. Is there a way to make it default to the 'songs' tab (or any other tab) ? Thanks.