App UIImagePickerController在方向app iphone ios 6中崩溃

时间:2013-04-11 04:47:50

标签: ios uiimagepickercontroller

我的应用程序的方向是所有视图的肖像,除了MPMoviePlayerViewController之外,它是横向的。

现在,当我尝试使用UIImagePickerController打开相机时,我的应用程序崩溃,

我读了一些子类的UIImage选择器控制器,我做了这个,

        - (BOOL)shouldAutorotate
           {
             return YES;
            }  

         - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
         {
             return UIInterfaceOrientationMaskPortrait;
         }

         - (NSUInteger)supportedInterfaceOrientations
         {
             return UIInterfaceOrientationMaskAll;
         } 

我的崩溃解决了,但是我的选择器被颠倒了, 请帮帮我。

1 个答案:

答案 0 :(得分:0)

试试这个:

- (BOOL)shouldAutorotate {

return YES;

}

- (NSUInteger)supportedInterfaceOrientations {

return UIInterfaceOrientationMaskPortrait;

}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {

return UIInterfaceOrientationPortrait;

}