2016-08-31 13 views
0

デバイスが横向きのみをサポートします。 iPhoneではすべて正常に動作します。しかし、iPadもポートレートをサポートしています。それを修正するには?Objective-c:横向きのみ

image

+0

あなたはユニバーサルデバイスを選択していますか? –

+0

私はiPadを選択してそれを風景にしますが、iPhoneで私のアプリケーションをどのように使用しますか? – user

答えて

2

Devicesからアプリを選択し、唯一この画像のようにLandscape Left & Landscape Rightをご確認ください。私が理解したよう

enter image description here

+0

それは仕事ですが、iPhoneで私のアプリをどのように使うのですか? – user

+0

設定セット 'Devices'を' Universal 'に戻した後 –

0

、あなたはビューコントローラのいずれかにこのコードを試すことができます。

-(BOOL)shouldAutorotateToInterfaceOrientation(UIInterfaceOrientation)interfaceOrientation { 

    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft | interfaceOrientation == UIInterfaceOrientationLandscapeRight); 
} 
+0

これはiOS 6.1以降に削除されました。代わりに、現代のアプリケーションは 'supportedInterfaceOrientations'などを使うべきです。 – Andy

関連する問題