我正在使用Xcode 4.2开发应用程序,我正在使用Storyboard
我正在尝试让App可旋转,但它不会旋转,这是我正在使用的代码:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown || interfaceOrientation != UIInterfaceOrientationLandscapeRight || interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown|| interfaceOrientation !=UIInterfaceOrientationPortrait);
}
在项目信息中,我支持所有方向......
我错过了什么吗?由于
答案 0 :(得分:0)
如果你想支持所有方向你应该只返回是,而不是你,每次反正都是。这是您的顶级视图控制器吗?如果您已将视图控制器嵌入到另一个视图控制器中(通常不应该这样),请确保最顶层的视图控制器具有此方法并返回yes。