iPad风景UIImagePickerController奇怪的黑色矩形

时间:2011-04-11 14:27:06

标签: ipad uiimagepickercontroller landscape

我有一个只在横向模式下工作的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];  

Photo gallery in portrait with weird rectangle

0 个答案:

没有答案