如何将XIB置于景观中

时间:2011-05-26 00:03:12

标签: iphone xib landscape

嘿 我正在制作基于视图的应用程序。对于其中一个xib文件,我希望它仅以横向模式显示。我该怎么做?

2 个答案:

答案 0 :(得分:6)

确保视图的方向设置为横向:
enter image description here

答案 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文件中,将有一个“支持接口方向”选项,根据您的要求进行设置。