0

我尝试了以下方法来强制我的观点之一风景:

- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;

}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeLeft;

}

- (BOOL)shouldAutorotate{
return YES;

}

也没有工作。请注意,我正在模拟器和 iPhone 上进行测试

谢谢

4

1 回答 1

0

请转到 Xcode 中的 Targets 并在 Generate Category 中选择 Device Orientation 勾选 Landscape Orientation。

于 2014-04-07T12:37:27.177 回答