我知道以前曾经问过这个问题,我实际上是在搜索问题,以确保我正确地做事。我的应用程序需要保持纵向方向,所以我想禁用它旋转到横向。
在摘要中,我仅支持纵向和颠倒的设备方向。 在viewcontroller我有:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{ 返回NO; }
我有其他6个视图控制器,每个视图控制器都有以下内容:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
但是当我在我配置的iPhone上测试应用程序时,它会旋转。 GRRRR。我究竟做错了什么?
由于
在模拟器中它是一样的。