我有一个仅包含viewcontrollerwebview。但是,此Web视图的内容非常广泛,因此我需要在landscape模式下进行显示。

问题是如何旋转网络视图或整个视图控制器?

我试图像这样更改orientations,但是没有用:

override func preferredInterfaceOrientationForPresentation() -> UIInterfaceOrientation {
    return .LandscapeLeft
}

override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
    return .Landscape
}

最佳答案

在AppDelegate中

func application(application: UIApplication, supportedInterfaceOrientationsForWindow window: UIWindow?) -> UIInterfaceOrientationMask {
    return UIInterfaceOrientationMask.Landscape
}

关于ios - 如何快速在景观ViewController中显示Web View ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37808295/

10-11 10:37