iPad中的弹出视图控制器的动画在横向模式下从右向左滑动到从底部滑动时意外更改。可能是什么问题?
感谢您的帮助。
答案 0 :(得分:0)
当我支持风景和肖像时,它发生在我身上,但是在viewcontrollers" supportedInterfaceOrientations"方法我正在返回" UIInterfaceOrientationMaskPortrait"
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
这为我解决了这个问题:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}