QT设置iOS屏幕方向

Qt set iOS screen orientation

本文关键字:方向 屏幕 iOS 设置 QT      更新时间:2023-10-16

在QT中的跨平台应用程序上工作。我需要能够强制几页的屏幕方向。我找到了为Android做到这一点的方法,但是我找不到任何iOS的东西。

有什么方法可以强制设置iOS中的屏幕方向?

更好,是否有一个呼叫可以为任何给定的移动平台设置屏幕方向吗?

谢谢!

在这里查看:

https://doc.qt.io/qt-5/qml-qtquick-window-screen.html#orientation-antached-prop

您可以在您自己的属性中写下屏幕。方向(或屏幕。

readonly property var screenOrientation: Screen.orientation
onScreenOrientationChanged: {
console.log("Orientation Changed!")
}