6

私はiOS6 SDKを使用しており、現在アップルは非推奨のランドスケープモードを使用しています。私のゲームはランドスケープ モードでのみ実行されるため、ランドスケープ iAd を使用するための回避策はありますか?

ありがとうございました。

4

1 に答える 1

-1

横向きモードはメソッドのみ非推奨ではありません

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

廃止されました。これで、以下の方法を使用できます:-

- (BOOL)shouldAutorotate
{
    return YES;
} 
- (NSUInteger)supportedInterfaceOrientations
{
  return  UIInterfaceOrientationMaskAll;
}
于 2012-09-26T12:22:20.380 に答える