在我的应用程序的构建设置中,我检查了所有支持的方向(除了倒置)。
但是,当我启动应用程序时,某些不打算以纵向显示的视图将自动旋转并截断一半视图。我不希望这些视图旋转。
我怎样才能防止这种情况?我试过使用:
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
return YES;
if(interfaceOrientation == UIInterfaceOrientationLandscapeRight)
return YES;
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
但是该设备仍然希望在可能的情况下转为纵向。任何帮助都会很棒。