我正在开发基于窗口的iPhone应用程序。 我想通过使用
添加旋转功能- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
但它不起作用。 这有什么问题。
注意:xCode 4,iOS 4.3
问候。
答案 0 :(得分:0)
在Xcode 4中,单击左侧栏中最顶部项目的项目,然后单击摘要选项卡,确保正确设置支持的方向。
如果可以,那么您可以尝试重写返回行,如下所示:
return(interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
如果这不起作用,请尝试return YES;
并查看视图是否会轮播。