嘿 我正在制作基于视图的应用程序。对于其中一个xib文件,我希望它仅以横向模式显示。我该怎么做?
答案 0 :(得分:6)
确保视图的方向设置为横向:
答案 1 :(得分:3)
确保此函数返回YES或(interfaceOrientation == UIInterfaceOrientationLandscape)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
// Or you can use the following return statement:
//return (interfaceOrientation == UIInterfaceOrientationLandscape);
}
在资源文件夹的Project-info.plist文件中,将有一个“支持接口方向”选项,根据您的要求进行设置。