(使用故事板)
我试图让我的 ViewController 子类之一支持的不仅仅是纵向视图。
我已经加进去了
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationPortrait));
}
但它似乎没有做任何事情。我的 plist 支持除倒置之外的所有方向,并添加了 shouldautorotate 以仅允许在我想要的视图控制器中使用纵向。