アプリでサポートする必要があるのは縦向きのみです。どうすればいいですか?追加してみました
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
と
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return UIInterfaceOrientationPortrait;
}
しかし、それは役に立ちません-とにかくビューが回転します。
前もって感謝します!