I am facing the done button issue in the MPMediaPickerController.
Device: iPod Touch
iOS :9.2
MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeMusic];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
picker.showsCloudItems = NO;
picker.prompt = NSLocalizedString (@"Add songs to play", "Prompt in media item picker");
// The media item picker uses the default UI style, so it needs a default-style
// status bar to match it visually
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:YES];
[self presentViewController:picker animated:YES completion:nil];
The picker is presenting but the done button is missing in the picker. Incase if I click at the place where we have done button earlier the picker is dismissing. Thank you for spending time for reading my question. Any ideas/suggestion could be very helpful.