In IOS6 I am using following method to get photo from I Pad photo Library.But now its not working for IOS7
UIImagePickerController* picker = [[UIImagePickerController alloc] init]; 
    picker.sourceType = UIImagePickerControllerCameraCaptureModePhoto; 
    picker.delegate = self; 
    UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:picker];
    [popover presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
    [picker release], picker = nil;
What is issue with IOS7
 
                        
Here you can use custom Frame and load the popover ;)
Check out UIImagePickerController crash only on iOS 7 - iPad