是的,我知道这个问题已经被问过很多次了,但是我找不到任何可以进一步帮助我的东西。
使用带有 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 上运行时,如果我以任何一种方式转动手机,方向都会从横向改变。当我试图把它转回来时,它就不会了。我想确保此应用程序永远无法从横向旋转。
有什么建议么?非常感谢您提前。