デバイスの向きの変更をロックするにはどうすればよいですか?
使ってみました
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationLandscapeRight;
}
この
- (void)viewDidAppear:(BOOL)animated
{
[self shouldAutorotateToInterfaceOrientation: UIInterfaceOrientationLandscapeRight];
[super viewDidAppear:animated];
}
しかし、デバイスを使用しても何も機能しません。アプリをシミュレーターで実行すると、うまく機能します。
シミュレータにはiOS6とデバイス5.1.1があります。私が間違っているのは何ですか?