我有一个场景,我正在UIViewcontrollers
动态创建并在其上添加 UIView 并将其推送到导航堆栈。这就是我创建我的方式view Controller
UIViewController *vc = [UIViewController new];
[vc.view addSubView:customView];
[self.navigationController pushViewController vc];
在设备上运行我的应用程序时,我的视图不会自动旋转。(如果 VC 有一个实现文件,我会返回YES
以shouldAutorotate
使其工作。)任何指针/帮助表示赞赏。
根据乔治的回复编辑:
George 的代码适用于 ios6 及更高版本。supportedInterfaceOrientations
API 已可用于 ios6.0+,正在寻找 ios4.3+ 的一般修复程序谢谢..