我正在创建具有 4 个选项卡的 Tabbar 应用程序,我的 FirstTabView 应该支持所有方向,并且所有 3 个 tabView 应该只支持纵向,当我将选项卡更改为 SecondTabView 时,它应该强制将方向更改为纵向,这在我使用的故事板中是否可能在下面FirstTabView.m 的代码
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return(interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
在 SecondTabView.m 中
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return(interfaceOrientation == UIInterfaceOrientationPortrait);
}
提前感谢它不允许任何选项卡视图支持横向。