0

オリエンテーションUITableViewControllerができないので問題が発生しました。UIDeviceOrientationPortraitUpsideDown私はすでにshouldAutorotateToInterfaceOrientation2つの縦向きを許可する機能を設定しました。

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内の4つの回転オプション。

そうでない場合は、コードを投稿できますshouldAutorotateToInterfaceOrientationか?

于 2012-07-06T03:41:50.493 に答える