我有支持各种方向的应用程序,但是我希望某些 viewControllers 只支持横向并且很少锁定 Potrait 模式。我该怎么做,我尝试了下面的代码,但没有任何效果。
- (BOOL)shouldAutorotate {
return NO;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
// pre-iOS 6 support
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
}