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