避免旋转EKEventEditViewController

时间:2014-05-29 07:22:10

标签: ios7 uiinterfaceorientation ekevent

如何避免EKEventEditViewController的旋转?在我的情况下,我需要将其限制为仅肖像。我们可以更改EKEventEditViewController的导航控制器吗?

1 个答案:

答案 0 :(得分:0)

找到了解决方法。

创建子类EKEventEditViewController,并在该类中重写

-(BOOL)shouldAutorotate{
//Does not support anything other than portrait
   return NO;
}

然后使用自定义类而不是EKEventEditViewController。