我的应用程序仅使用横向。我通过 .plist 支持的界面方向修复了它。
但是,我需要使用 UIImagePickerController,它只支持纵向模式。如何在特定的视图控制器中将我的应用程序的旋转旋转为纵向?
任何提示都会非常有帮助!泰!
我的应用程序仅使用横向。我通过 .plist 支持的界面方向修复了它。
但是,我需要使用 UIImagePickerController,它只支持纵向模式。如何在特定的视图控制器中将我的应用程序的旋转旋转为纵向?
任何提示都会非常有帮助!泰!
ColinE,你的意思是我应该设置如下?
所有其他视图控制器
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || UIInterfaceOrientationLandscapeLeft);
}
并设置portarit页面
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}