在 Swift 的特定视图控制器中锁定应用程序的方向

Lock the orientation of the app in a specific View Controller in Swift

我正在开发一个需要在每个视图控制器中锁定方向的应用程序。 我读了 ,但它对我不起作用。 在项目设置中,我将设备方向设置为纵向、横向左和横向右。

我有两个视图控制器,VC1 和 VC2,我只想垂直锁定 VC1 的方向。另一方面,我只想锁定 VC2 的方向。

然后我在VC1中添加了如下代码

override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
    return UIInterfaceOrientationMask.portrait //return the value as per the required orientation
    }

override var shouldAutorotate: Bool {
        return false
    }

但是,我仍然可以水平旋转VC1... 旁注:VC1 包含一个导航栏和一个标签栏。

如果你知道如何解决这个问题,请告诉我...

您可以通过几个步骤强制定位:

首先,在您的 AppDelegate 中定义方向 属性 并符合 supportedInterfaceOrientationsFor

var orientationLock = UIInterfaceOrientationMask.portrait
    
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
    return self.orientationLock
}

然后声明实用程序结构以使用 KVO 设置方向:

struct AppOrientationUtility {
    static func lockOrientation(_ orientation: UIInterfaceOrientationMask) {
        if let delegate = UIApplication.shared.delegate as? AppDelegate {
            delegate.orientationLock = orientation
        }
    }
        
    static func lockOrientation(_ orientation: UIInterfaceOrientationMask, andRotateTo rotateOrientation: UIInterfaceOrientation) {
        self.lockOrientation(orientation)
        UIDevice.current.setValue(rotateOrientation.rawValue, forKey: "orientation")
    }
}

使用方法:

//For portrait
AppOrientationUtility.lockOrientation(UIInterfaceOrientationMask.portrait, andRotateTo: UIInterfaceOrientation.portrait)

//For landscape
AppOrientationUtility.lockOrientation(UIInterfaceOrientationMask.landscapeRight, andRotateTo: UIInterfaceOrientation.landscapeRight)