shouldAutorotateToInterfaceOrientation在ios6模拟器中不起作用

时间:2012-12-23 12:36:34

标签: objective-c ios ios6 ios-simulator

  

可能重复:
  shouldAutorotateToInterfaceOrientation: never called

我有应用程序使用一些方向,但问题是当我向左或向右旋转ios6模拟器时

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 return YES;
}  

甚至没有打电话!!! ,当我使用ios 5.1模拟器时,它调用它并且工作正常吗?任何帮助将不胜感激,

1 个答案:

答案 0 :(得分:2)

iOS 6.0弃用了它。改为覆盖supportedInterfaceOrientationspreferredInterfaceOrientationForPresentation方法。