我正在使用iOS6 SDK,目前苹果已弃用横向模式。是否有任何解决方案可以使用横向iAd,因为我的游戏只能在横向模式下运行。
谢谢。
答案 0 :(得分:-1)
横向模式不会仅弃用方法
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
已被弃用。现在您可以使用以下方法: -
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}