gpt4 book ai didi

ios - 如何更改不在 Storyboard 中的 viewController 的方向

转载 作者:行者123 更新时间:2023-11-30 12:43:13 24 4
gpt4 key购买 nike

在下面的示例中,有一种方法可以使 readerVC 的方向为纵向和横向。

func loadReader(filePaht : String)  {

let document = ReaderDocument(filePath: filePaht, password: nil)
if document != nil {
let readerVC = ReaderViewController(readerDocument: document)
readerVC?.delegate = self
readerVC?.modalTransitionStyle = UIModalTransitionStyle.crossDissolve
readerVC?.modalPresentationStyle = UIModalPresentationStyle.fullScreen
self.navigationController?.pushViewController(readerVC!, animated: true)

UIApplication.shared.isStatusBarHidden = true
}
}

最佳答案

您可以覆盖支持的界面方向:

override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
return .all
}

或者您可以return .allButUpsideDownreturn .portrait - 无论您想指定什么。

关于ios - 如何更改不在 Storyboard 中的 viewController 的方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41994137/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com