我有一个问题,UITableViewController
它不会做UIDeviceOrientationPortraitUpsideDown
定向。我已经设置了shouldAutorotateToInterfaceOrientation
允许两个纵向方向的功能。
这是我实现 UITableViewController 的代码
UITableViewController *controller = [[UITableViewController alloc] initWithStyle:UITableViewStyleGrouped];
controller.tableView.delegate = self;
controller.tableView.dataSource = self;
controller.tableView.scrollEnabled = NO;
谢谢