0

我的应用程序仅使用横向。我通过 .plist 支持的界面方向修复了它。

但是,我需要使用 UIImagePickerController,它只支持纵向模式。如何在特定的视图控制器中将我的应用程序的旋转旋转为纵向?

任何提示都会非常有帮助!泰!

4

2 回答 2

1

请参阅博文iPhone 编程:如何强制您的应用程序以横向模式运行

于 2013-02-28T08:50:10.047 回答
0

ColinE,你的意思是我应该设置如下?

所有其他视图控制器

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || UIInterfaceOrientationLandscapeLeft); 
}

并设置portarit页面

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    return (interfaceOrientation == UIInterfaceOrientationPortrait); 
}
于 2013-02-28T09:08:03.073 回答