如何使我的观点只是景观

时间:2017-02-17 12:39:48

标签: objective-c xcode uiviewcontroller landscape

在我的项目中我有3个视图由于某种原因我的一个视图必须支持横向和纵向但问题是,我想我的一个视图只支持景观有没有办法做到这一点?

我的代码写在Objective -c

感谢您的帮助:)

2 个答案:

答案 0 :(得分:0)

在viewcontroller中覆盖以下方法,这应该做你想做的事情

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape; // enforces the landscape orientation
}

答案 1 :(得分:0)

不,您只能配置应用程序作为一个整体是否可以支持横向模式。
不能支持一个视图的景观和不适合他人。