如何在iOS6中使用iAds

Gam*_*mer 6 objective-c ios iad ios6

我正在使用iOS6 SDK和目前苹果弃用的横向模式.是否有任何解决方案可以使用横向iAd,因为我的游戏只能在横向模式下运行.

谢谢.

Baj*_*jaj -1

横向模式不被弃用,只是方法

\n\n
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation \n
Run Code Online (Sandbox Code Playgroud)\n\n

已被弃用。现在您可以使用以下方法:-

\n\n
- (BOOL)shouldAutorotate\n{\n    return YES;\n} \n- (NSUInteger)supportedInterfaceOrientations\n{\n  return \xc2\xa0UIInterfaceOrientationMaskAll;\n}\n
Run Code Online (Sandbox Code Playgroud)\n