0

我有一个问题,UITableViewController它不会做UIDeviceOrientationPortraitUpsideDown定向。我已经设置了shouldAutorotateToInterfaceOrientation允许两个纵向方向的功能。

这是我实现 UITableViewController 的代码

UITableViewController *controller = [[UITableViewController alloc] initWithStyle:UITableViewStyleGrouped];
controller.tableView.delegate = self;
controller.tableView.dataSource = self;
controller.tableView.scrollEnabled = NO;

谢谢

4

1 回答 1

1

最可能的解释是您的应用程序本身不支持倒置(Apple 人机界面指南建议 iPhone 应用程序不应倒置旋转。)您可以在 Xcode 中的项目设置中修改它。

Xcode 中的四个旋转选项。

如果不是这样,您可以发布您的代码shouldAutorotateToInterfaceOrientation吗?

于 2012-07-06T03:41:50.493 回答