在我的应用程序中,第二个选项卡一个视图控制器中有三个选项卡,我只想以纵向模式查看,但我无法以该格式查看...所以任何人都有正确的解决方案,然后在这里回答...
问问题
26 次
1 回答
0
将此方法添加到您的第二个视图控制器:
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
- (BOOL)shouldAutorotate
{
return NO;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
}
于 2013-04-29T12:04:54.650 回答