如何将XIB放置在景观中

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

要回复问题请先登录注册