我尝试使用iOS6实现从iPad中的照片库中挑选图像的代码,但它无法正常工作。我试过的代码如下所示。
UIImagePickerController *imagePickerController=[[UIImagePickerController alloc] init];
imagePickerController.delegate=self;
UIPopoverController *popover=[[UIPopoverController alloc] initWithContentViewController:imagePickerController];
popover.delegate=self;
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeSavedPhotosAlbum]) {
imagePickerController.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[popover presentPopoverFromRect:CGRectMake(400, 400, 0, 0) inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
}
任何人都可以告诉我这个问题的解决方案。
任何帮助将不胜感激