0

UITableViewController を横向きのみにしたいのですが、縦向きから回転することさえできません... プロジェクト設定で向きプロパティを横向きに設定し、StoryBoards で UITableViewController の向きを変更しましたが、まだ何もありません。また、どうすればよいですか?デバイス/シミュレーターで実行すると、Portrait Left でロックされます。

http://img15.imageshack.us/img15/9652/tavblef.png

4

3 に答える 3

0

したがって、答えは非常に簡単です。新しいプロジェクトを作成し、ストーリーボードに新しい UITableViewController を作成しましたが、UITableViewController のサブクラスを作成する代わりに、デフォルトの UIViewController クラスで作業していました...

于 2013-03-04T17:26:38.213 に答える
0

「プロジェクト名」->「ターゲット」->「情報」で、この 4 つの方向サポートを設定する必要があることを確認してください。

ここに画像の説明を入力

于 2013-03-03T19:28:30.920 に答える
0

これをviewcontroller.mファイルに追加してみてください

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation== UIInterfaceOrientationLandscapeRight|| interfaceOrientation==     UIInterfaceOrientationLandscapeLeft);
}
于 2013-03-03T20:31:21.480 に答える