我的UITableViewController
问题不明确UIDeviceOrientationPortraitUpsideDown
方向。我已设置shouldAutorotateToInterfaceOrientation
功能,允许两个纵向方向。
这是我实现我的UITableViewController
的代码UITableViewController *controller = [[UITableViewController alloc] initWithStyle:UITableViewStyleGrouped];
controller.tableView.delegate = self;
controller.tableView.dataSource = self;
controller.tableView.scrollEnabled = NO;
感谢
答案 0 :(得分:1)
最可能的解释是,您的应用程序本身不会支持倒置(Apple人机界面指南建议不要颠倒iPhone应用程序。)您可以在Xcode中的项目设置中修改它。 / p>
如果不是,您可以发布shouldAutorotateToInterfaceOrientation
的代码吗?