0

我想强迫我的观点去风景,就在我调用一个方法的时候。

当我的方法运行时,我调用:

[self shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)UIInterfaceOrientationLandscapeRight];

自动旋转的方法

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}

问题是视图不会强制旋转。可以在模拟器上测试它,还是只在真实设备上工作?

4

1 回答 1

1
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:YES];
于 2012-06-14T17:12:16.443 回答