Swift-弹出对话框禁用方向

时间:2019-07-18 11:28:20

标签: swift popup orientation landscape portrait

我目前正在使用Swift Popup库,来自:

https://github.com/Orderella/PopupDialog

尽管有一件事,但一切工作正常。当方向改变时,popupdialog旋转...这个事实与我的实现冲突:

override func viewWillAppear(_ animated: Bool) {
    UIDevice.current.setValue(Int(UIInterfaceOrientation.landscapeRight.rawValue), forKey: "orientation")
}

override func viewDidAppear(_ animated: Bool) {
    self.tabBarController?.setTabBarVisible(visible: false, animated: true)
}

如何在popupdialog中禁用方向切换?

我研究了他们的github存储库和各种帖子,但没有提示...

感谢和问候!

1 个答案:

答案 0 :(得分:-1)

您尝试通过仅将应用程序方向设置为纵向来进行尝试。