私のアプリケーションでは、2番目のタブ1つのビューコントローラーに3つのタブがあり、ポートレートモードでのみ表示したいのですが、その形式で表示することはできません...だから、誰もが正しい解決策を持っているので、ここで答えてください...
質問する
26 次
1 に答える
0
このメソッドを 2 番目のビュー コントローラーに追加します。
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
- (BOOL)shouldAutorotate
{
return NO;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
}
于 2013-04-29T12:04:54.650 に答える