4 つの UINavigationControllers を持つ UITabBarController を使用しています。
4番目の ViewController では、その向きを縦向きに制限したいのですが、次の方法を使用していますが、うまくいきません。助けてください。
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}