我有一个 X-Code 项目,它是 Portrait 并且它不会从那里移动。它总是在肖像上。我怎样才能使 1 页,默认情况下,它是横向的?
如果你能尽可能详细地介绍,那就太好了。我是 X-Code 的新手。
你可以做这样的事情
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
return UIInterfaceOrientationIsLandscapeRight(toInterfaceOrientation);
}
-(NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscapeRight;
}
按照屏幕截图上的这两个步骤,您将能够选择您想要的任何方向!
或者,如果您希望它用于特定视图,请遵循此。