1

我对 Xcode 7 有另一个问题。我尝试了一些研究,但无法提出解决方案。错误是 Int 不能转换为 UIInterfaceOrientationMask。下面的代码:

override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
    if visibleViewController is KINWebBrowserViewController { return Int(UIInterfaceOrientationMask.All.rawValue) }
    return Int(UIInterfaceOrientationMask.Portrait.rawValue)
}

谢谢

4

1 回答 1

1

斯威夫特 3.x

override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
    return visibleViewController is KINWebBrowserViewController ? .all : .portrait
}
于 2015-06-13T22:56:57.413 回答