0

是的,我知道这个问题已经被问过很多次了,但是我找不到任何可以进一步帮助我的东西。

使用带有 3 个视图控制器的导航控制器,我需要保留以前屏幕中的数据,所以我不使用 segue,但像这样:

// When button is pressed
- (IBAction)changeView:(id)sender {
NSLog(@"Skipped connection screen");
ViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondView"];

[self.navigationController pushViewController:vc animated:YES];

其中 SecondView 是应该出现的视图控制器的标识符。因为我只希望旋转在水平右侧,所以我在每个 .m 文件的顶部添加了这段代码,用于我的视图:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{

return (self.interfaceOrientation == UIInterfaceOrientationLandscapeRight);  
}

在我的 project-Info.plist 中,我添加了Initial interface orientation = Landscape (right home button,在我的项目设置中,我只添加了对这个方向的支持。

问题是,在 iPhone 上运行时,如果我以任何一种方式转动手机,方向都会从横向改变。当我试图把它转回来时,它就不会了。我想确保此应用程序永远无法从横向旋转。

有什么建议么?非常感谢您提前。

4

2 回答 2

2

我认为如果您将以下密钥添加到您的 .plist 文件中,那么它将被修复。

"Supported interface orientations" 此键的值可以是"Landscape (right home button)"您想要的任何值,因此您的应用程序将仅支持指定的方向。

还要将此代码添加到每个视图控制器中。

- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation{
return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);  
}
于 2012-06-21T08:22:30.623 回答
1

您应该在“返回”代码中使用该参数:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
   return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);  
}
于 2012-06-21T08:19:58.690 回答