我正在使用带有 4 个 UINavigationControllers 的 UITabBarController 。
在第四个 ViewController 中,我想将其方向限制为仅纵向,我正在使用以下方法,但这些方法对我不起作用,请帮助我。
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}