大家好,我将设备设置为横向模式,在该模式下,当我按下“照片库”按钮时,图库以纵向模式打开,从图库中选择图片后,它将返回横向模式。当我在横向模式下工作时,我想以横向模式打开画廊。
我使用此代码打开相册
- (void)imagesFromGallery{
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
if(!popover)
{
popover = [[UIPopoverController alloc] initWithContentViewController:imagePicker];
}
[popover presentPopoverFromRect:CGRectMake(500, 620, 0, 0)
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionUp
animated:YES];
}
else
{
[self presentModalViewController:imagePicker animated:YES];
} }
提前致谢....