1

横向きのみを許可し、両方 (左と右) を許可するようにアプリを作成するにはどうすればよいですか? 180°回転するとアプリは回転しますが、縦向きに回転するとアプリは回転しませんか?

ありがとう

4

1 に答える 1

1

これを 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 クラス リファレンス

于 2010-06-08T14:41:28.363 に答える