safeAreaLayoutGuide - 横向模式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了safeAreaLayoutGuide - 横向模式相关的知识,希望对你有一定的参考价值。

我已经设置了safeAreaLayoutGuide:

let guide = view.safeAreaLayoutGuide

NSLayoutConstraint.activate([
  topControls.topAnchor.constraint(equalTo: guide.topAnchor, constant: 0)
])

这很棒。但是,当我将设备旋转到横向模式时,没有状态栏(电池,信号等),并且屏幕顶部的偏移为零。这是正确的,基于锚。但是,它看起来不太好。如何在锚点创建过程中为横向添加偏移量20?我不想手动更改基于方向的常量。

答案

假设您在iPhone上运行,那么这是预期的行为,可以通过覆盖以下内容来更改:

override var prefersStatusBarHidden: Bool {
    return false
}

从该UIViewController方法的描述:

默认情况下,此方法返回false,但有一个例外。对于针对ios 8或更高版本链接的应用,如果视图控制器处于垂直紧凑的环境中,则此方法返回true。

如果您覆盖它,那么您将获得横向状态栏,安全区域指南将相应地进行调整。

编辑

所以与原始要求有轻微的误解。这不是显示状态栏,而是有一个像是否有状态栏的差距。

这将需要手动完成,因为您无法设置仅手动应用于某些方向/大小类的约束。

这是一个基本的UIViewController,可以满足您的需求:

class ViewController: UIViewController {
    var testView: UIView!
    var landscapeConstraint: NSLayoutConstraint!
    var portraitConstraint: NSLayoutConstraint!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        self.testView = UIView()
        self.testView.backgroundColor = .green
        self.view.addSubview(self.testView)
        self.testView.translatesAutoresizingMaskIntoConstraints = false

        let guide = view.safeAreaLayoutGuide

        self.testView.leftAnchor.constraint(equalTo: guide.leftAnchor, constant: 0).isActive = true
        self.testView.rightAnchor.constraint(equalTo: guide.rightAnchor, constant: 0).isActive = true
        self.testView.bottomAnchor.constraint(equalTo: guide.bottomAnchor, constant: 0).isActive = true

        self.portraitConstraint = self.testView.topAnchor.constraint(equalTo: guide.topAnchor, constant: 0)
        self.landscapeConstraint = self.testView.topAnchor.constraint(equalTo: guide.topAnchor, constant: 20) // Hardcoded the size but this can be anything you want.

        switch self.traitCollection.verticalSizeClass {
        case .compact:
            self.landscapeConstraint.isActive = true
        case.regular:
            self.portraitConstraint.isActive = true
        default: // This shouldn't happen but let's assume regular (i.e. portrait)
            self.portraitConstraint.isActive = true
        }
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    override func willTransition(to newCollection: UITraitCollection, with coordinator: UIViewControllerTransitionCoordinator) {
        super.willTransition(to: newCollection, with: coordinator)

        switch newCollection.verticalSizeClass {
        case .compact:
            self.portraitConstraint.isActive = false
            self.landscapeConstraint.isActive = true
        case.regular:
            self.landscapeConstraint.isActive = false
            self.portraitConstraint.isActive = true
        default: // This shouldn't happen but let's assume regular (i.e. portrait)
            self.landscapeConstraint.isActive = false
            self.portraitConstraint.isActive = true
        }
    }
}

基本上你设置固定约束,即左,右和底,然后设置纵向和横向(常规和紧凑垂直尺寸类)的约束,默认情况下都禁用。然后根据当前方向/大小类决定激活哪一个。然后你覆盖:

willTransition(to newCollection: UITraitCollection, with coordinator: UIViewControllerTransitionCoordinator)

方法并根据新的orientation / size类交换两个约束的活动状态。

需要注意的一件事是始终首先停用约束,然后激活约束以避免任何抱怨无法满足的约束。

以上是关于safeAreaLayoutGuide - 横向模式的主要内容,如果未能解决你的问题,请参考以下文章

在 iPhone X 上横向使用最大屏幕

如何修复 SafeAreaLayoutGuide

如何修复 - safeAreaLayoutGuide' 仅适用于 iOS 11.0 或更高版本

旋转设备后 safeAreaLayoutGuide 未更新

safeAreaLayoutGuide 不适用于 systemLayoutSizeFittingSize

NSLayoutConstraint 和 safeAreaLayoutGuide - 编码兼容 pre-iOS 11