我正在开发基于iPad / iPhone标签栏的应用程序。我有大约30个类文件,需要在应用程序中启用旋转,以便iPad用户可以在任何方向查看。据我所知,每个类都需要通过使用以下内容来启用旋转:
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
return YES;
}
但是,我在一个类文件中创建并显示了一些UIViewControllers
,据我所知,您无法为该类型启用它。
有没有办法为应用程序启用全局轮换?我在Info.plist中尝试过。有什么东西可以添加到AppDelegate
以启用全局轮换吗?
顺便说一句:我已经尝试在每个类文件中添加返回YES
进行轮换。
提前致谢,
Baharini
答案 0 :(得分:0)
在Xcode
Project Navigator
点击项目名称。现在,在Summary
标签上的中心视图上,您可以看到此部分中的iPad\iPhone Development Info
有Supported Device Orientations
。您可以将所有这些设置为支持任何方向!
我希望它对你有用!