IOS - 如何强制视图到横向

时间:2012-06-14 16:52:47

标签: ios uiview autorotate

我想强迫我的观点去景观,就在我打电话给方法时。

当我的方法运行时,我打电话:

[self shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)UIInterfaceOrientationLandscapeRight];

自动旋转方法

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

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

1 个答案:

答案 0 :(得分:1)

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:YES];