1

単一のビューで実行する方向を設定するにはどうすればよいですか?以下のこれは私にすべての方向を与えるように機能しますが、特定のビューでは、私は回転したくありません。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
 return YES;
}

ありがとう!

4

1 に答える 1

1

これを行うだけです:

- (BOOL)shouldAutorotateToInterfaceOrientation:   (UIInterfaceOrientation)interfaceOrientation
{
     //Or UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight
     return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
于 2012-07-25T03:01:16.193 に答える