Objective-c:仅横向

时间:2016-08-31 05:28:29

标签: ios objective-c xcode orientation uiinterfaceorientation

我希望设备仅支持横向显示。在iPhone上一切正常。但iPad也支持肖像。如何解决?

image

2 个答案:

答案 0 :(得分:2)

Devices选择iPad并查看Landscape Left& Landscape Right仅限于此图片。

enter image description here

答案 1 :(得分:0)

据我了解,您可以尝试使用此代码进入任何视图控制器。

-(BOOL)shouldAutorotateToInterfaceOrientation(UIInterfaceOrientation)interfaceOrientation {

    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft | interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}