I posted this in the regular board, but did not get any feedback.
This is in the view that shows up inside the popover I have:
Code:
- (IBAction)openMediaPicker:(id)sender {
MPMediaPickerController *mediaPicker = [[MPMediaPickerController alloc] initWithMediaTypes:MPMediaTypeMusic];
mediaPicker.delegate = self;
mediaPicker.allowsPickingMultipleItems = YES; // this is the default
[mediaPicker setWantsFullScreenLayout:NO];
[mediaPicker setModalInPopover:YES];
[self presentModalViewController:mediaPicker animated:YES];
[mediaPicker release];
}
When this shows up, it does not showup inside the popover. It takes the whole iPad screen. I tried all other ways to make it show up inside the same popover, but no luck.
Any ideas?
Thank you.