横向きのみを許可し、両方 (左と右) を許可するようにアプリを作成するにはどうすればよいですか? 180°回転するとアプリは回転しますが、縦向きに回転するとアプリは回転しませんか?
ありがとう
横向きのみを許可し、両方 (左と右) を許可するようにアプリを作成するにはどうすればよいですか? 180°回転するとアプリは回転しますが、縦向きに回転するとアプリは回転しませんか?
ありがとう
これを UIViewController に追加してみてください:
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
詳細については、こちらをご覧ください: UIViewController クラス リファレンス