How do you use the image picker controller on the iPad? My iphone version works 
fine but I get a UI Mess on the iPad. (Part of the nav bar loads and nothing 
else.) Anyway so I tried 
        if ([[[UIDevice currentDevice]model]containsString:@"iPad"]){
                if( [UIImagePickerController 
isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary ] ||
                   [UIImagePickerController 
isSourceTypeAvailable:UIImagePickerControllerSourceTypeSavedPhotosAlbum ])
                {
                        
                        mainPicker = [[UIImagePickerController alloc] init];
                        NSLog(@"Picker %@",mainPicker);
                        mainPicker.sourceType = 
UIImagePickerControllerSourceTypePhotoLibrary & 
UIImagePickerControllerSourceTypeSavedPhotosAlbum;
                        
                        mainPicker.delegate = self;
                        
                        mainPicker.allowsImageEditing = YES;
                        [[UIApplication 
sharedApplication]setStatusBarOrientation:UIInterfaceOrientationPortrait 
animated:YES];

                        [delegate slideSubview:pickerParent fromTop:YES];
                        [self presentModalViewController:mainPicker 
animated:YES];
                } 
        }


And now it crashes telling me I have to use a popover:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: 'On iPad, UIImagePickerController must be presented via 
UIPopoverController'


Are the any examples of how to present a UIImagePicker on the 
iPad?_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to