-4

我有一个 X-Code 项目,它是 Portrait 并且它不会从那里移动。它总是在肖像上。我怎样才能使 1 页,默认情况下,它是横向的?

如果你能尽可能详细地介绍,那就太好了。我是 X-Code 的新手。

4

2 回答 2

1

你可以做这样的事情

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return UIInterfaceOrientationIsLandscapeRight(toInterfaceOrientation);
}

-(NSUInteger)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskLandscapeRight;
}
于 2013-10-18T21:49:59.883 回答
1

按照屏幕截图上的这两个步骤,您将能够选择您想要的任何方向!

在此处输入图像描述

或者,如果您希望它用于特定视图,请遵循

于 2013-10-18T21:53:32.167 回答