6

我正在使用 iOS6 SDK,目前苹果已弃用横向模式。有什么办法可以使用横向 iAd,因为我的游戏只在横向模式下运行。

谢谢你。

4

1 回答 1

-1

Landscape mode is not deprecated only the method

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

has been deprecated. Now you can use below methods:-

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