私はあらゆる種類の向きをサポートするアプリを持っていますが、特定のviewControllerが横向きのみをサポートし、Potraitモードでロックするものはほとんどないようにしたいです。どうすればそれを行うことができますか、私は以下のコードを試しましたが、何も機能しません。
- (BOOL)shouldAutorotate {
return NO;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
// pre-iOS 6 support
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
}