如何避免EKEventEditViewController的旋转?在我的情况下,我需要将其限制为仅肖像。我们可以更改EKEventEditViewController的导航控制器吗?
答案 0 :(得分:0)
找到了解决方法。
创建子类EKEventEditViewController,并在该类中重写
-(BOOL)shouldAutorotate{
//Does not support anything other than portrait
return NO;
}
然后使用自定义类而不是EKEventEditViewController。