アプリを常に縦向きモードのみにする方法を教えてください。iPhone を回転させると、横向きモードでアプリが表示されません。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortrait);
return YES;
}
このコーディング後、iPhoneアプリを回転すると横向きモードで表示されます。アプリを常にポートレート モードにする方法を教えてください。