我有一个只在横向模式下工作的iPad应用程序,一切都很棒。当我尝试在风景中启动照片库时我遇到了问题...在阅读完所有这些帖子之后,它似乎是不可能的。让我们假设......我仍然试图展示它,它很适合画像,但我在右上角有一个奇怪的矩形它不应该在那里。你知道为什么会遇到类似的东西吗?
我的代码如下:
[[UIApplication sharedApplication] setStatusBarOrientation: UIInterfaceOrientationPortrait animated:NO];
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
picker.modalPresentationStyle=UIModalPresentationPageSheet;
[self presentModalViewController: picker animated:YES];
[picker release];