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 回答