2

縦向きと横向きの両方をサポートする iPhone アプリに取り組んでいます。アプリを横向きモードで起動し、AppDelegate で向きを確認すると、縦向きが返されます。デバイス/シミュレーターを回転させた後、向きが正しく返されます。iOS7のアプリです。これを処理する方法を知っている人はいますか?UI を処理するために、起動時の向きを知る必要があります。

4

1 に答える 1

2

UIViewControllerドキュメンテーションは言う:

Note: At launch time, apps should always set up their interface in a portrait orientation. After the application:didFinishLaunchingWithOptions: method returns, the app uses the view controller rotation mechanism described above to rotate the views to the appropriate orientation prior to showing the window.

そのため、最初にポートレート モードが返されます。UIViewControllerドキュメントの詳細情報。

于 2013-11-12T12:26:41.923 に答える