IPad ViewController弹出动画样式从右向左滑动变为从下到上滑动

时间:2011-08-24 16:05:39

标签: ios ipad

iPad中的弹出视图控制器的动画在横向模式下从右向左滑动到从底部滑动时意外更改。可能是什么问题?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

当我支持风景和肖像时,它发生在我身上,但是在viewcontrollers" supportedInterfaceOrientations"方法我正在返回" UIInterfaceOrientationMaskPortrait"

- (NSUInteger)supportedInterfaceOrientations {
  return UIInterfaceOrientationMaskPortrait;
}

这为我解决了这个问题:

- (NSUInteger)supportedInterfaceOrientations {
  return  UIInterfaceOrientationMaskAll;
}