正在努力构建应用程序。我正在使用 ECSlidingViewController,它在打开新视图时使用:
[self.view addSubview:_topViewController.view];
这一切都很好,直到我想在一个视图上禁用横向。我的应用程序在一个视图控制器上启动,我将自动旋转设置为禁用
- (BOOL)shouldAutorotateToInterfaceOrientation(UIInterfaceOrientation)interfaceOrientation {
return NO;
}
当它作为子视图打开时,我如何在另一个视图控制器中覆盖它?
非常感谢帮助!