iPadアプリでポートレイトオリエンテーションの両方のバリエーションを実装する必要があります。iPad:ポートレイトオリエンテーションのバリアントを実装できません
Portrait
とPortraitUpsideDown
の両方の向きを実装するには、次のコードを使用しています。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
}
オリエンテーションがPortraitUpsideDownの場合、向きは変わりません。
何が間違っている可能性がありますか?
@suprandr:入力いただきありがとうございます。私もこれを試しました。しかし、それは役に立たない。何が間違っていますか? –
デバイスで試しましたか?また、チェックする前にシミュレータでローテーションをトリガしようとしましたか? – suprandr
@suprandr:私はデバイス上で試してみませんでしたが、シミュレータ上で回転をトリガしてチェックしようとしましたが、うまくいかないようです。それでは何ができますか? –