0

由于引入了安全区域,我的顶部栏在除 iPhoneX 之外的所有其他 iPhone 上都可以正常工作。顶部栏从不安全区域本身开始。顶部栏是自定义 UI。如下所示:

这就是它在 iPhone5s 中的样子

这就是它在 iPhoneX 中的样子

代码如下:

    //Top Bar
    let topBar = UIView(frame:CGRect(x: 0,y: 0, width: width, height: 60))
    topBar.backgroundColor = UIColor.white
    topBar.layer.shadowColor = UIColor.gray.cgColor
    topBar.layer.shadowOffset = CGSize(width: 0, height: 3)
    topBar.layer.shadowOpacity = 1
    topBar.layer.masksToBounds = false
    topBar.layer.shadowRadius = 8.0;

    self.view.addSubview(topBar)

我该如何解决这个问题。我希望从安全区域开始查看。我不想使用 UINavigationBar。谢谢。

4

2 回答 2

1

使用自动布局和布局指南来构建您的 UI。例如,使用 SnapKit。

let topBar = UIView(frame:CGRect(x: 0,y: 0, width: width, height: 60))
topBar.snp.makeConstraints { make in

    make.top.equalTo(self.view.safeAreaLayoutGuide.snp.top)

    make.leading.trailing.equalToSuperview()
}

更新

用原始api重写。

let topBar = UIView(frame:CGRect(x: 0,y: 0, width: 30, height: 60))
self.view.addSubview(topBar)
let top = NSLayoutConstraint.init(item: topBar, attribute: .top, relatedBy: .equal, toItem: self.view.safeAreaLayoutGuide, attribute: .top, multiplier: 1.0, constant: 0.0)
let leading = NSLayoutConstraint.init(item: topBar, attribute: .leading, relatedBy: .equal, toItem: self.view, attribute: .leading, multiplier: 1.0, constant: 0.0)
let trailing = NSLayoutConstraint.init(item: topBar, attribute: .trailing, relatedBy: .equal, toItem: self.view, attribute: .trailing, multiplier: 1.0, constant: 0.0)
let height = NSLayoutConstraint.init(item: topBar, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1.0, constant: 50.0)
topBar.addConstraints([top, leading, trailing, height])
于 2017-11-15T09:41:46.587 回答
0

而且我不想使用 UINavigationBar

你想要什么并不重要。无论如何你都需要。您违反了界面准则,现在因此而陷入困境。做苹果想让你做的事。UINavigationBar 能够在正确配置后自动向上伸展到“缺口”后面。底部的 UIToolbar 也是如此。你需要使用这些。

于 2017-11-16T02:19:53.677 回答