Info.plist ファイルに記述されているように、縦向きのみをサポートするアプリを開発しています。しかし、デバイスを回転すると、ステータスバーは回転しますが、ビューは回転しません。ビューと初期ウィンドウを設定するために InterfaceBuilder を使用しません。プログラムで次のように記述します。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = myRootViewController;
[self.window makeKeyAndVisible];
return YES;
}
私のすべての見解には、次の方法があります。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
どうすればこれを解決できますか?