我知道我必须添加这个
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
到视图控制器以便在横向模式下使特定的屏幕锁定,但是我必须为每个视图控制器执行此操作吗?有没有办法只做一个适用于所有视图控制器的主锁?