我的应用程序以纵向模式运行,但是我只想以横向模式显示一个屏幕,因为它是一个图表。我要在uiviewcontroller中添加哪些内容以使其仅强制进入横向模式?
最佳答案
抱歉,这个答案很短:如果您使用的是UINavigationController,则不能。因此,@ jer给出的答案是错误的。 Apple文档指出:
我最近得到了悬赏,回答了这个问题,但在此过程中我的应用被拒绝了。在这里阅读:How to constrain autorotation to a single orientation for some views, while allowing all orientations on others?
您唯一的解决方案是扔掉UINavigationController并用您自己的东西重写它。
关于iphone - 强制UIViewController仅在横向模式下显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5339662/