使用 xcode 9 创建一些新的视图控制器,所以现在我有一些安全区域需要处理。
我目前正在尝试做一些完全证明的事情,这意味着保持不安全区域不变(因为我总是显示状态栏)并将背景颜色扩展到全屏(以保持与我过去类似的行为)。
另外需要注意的是,这也会影响页面控件,因为当您拥有一些页面控件时,系统会将它们放在底部的不安全区域中,该区域也将显示为黑色。
不过,我找不到让背景颜色延伸到不安全区域后面的方法。有什么想法吗?
使用 xcode 9 创建一些新的视图控制器,所以现在我有一些安全区域需要处理。
我目前正在尝试做一些完全证明的事情,这意味着保持不安全区域不变(因为我总是显示状态栏)并将背景颜色扩展到全屏(以保持与我过去类似的行为)。
另外需要注意的是,这也会影响页面控件,因为当您拥有一些页面控件时,系统会将它们放在底部的不安全区域中,该区域也将显示为黑色。
不过,我找不到让背景颜色延伸到不安全区域后面的方法。有什么想法吗?
它看起来像一个 hacky 技巧,但你可以试试这个:
你可以在应用程序启动期间或视图控制器的 viewDidLoad 期间设置状态栏的背景颜色。在这里,它以下列方式对我有用。
extension UIApplication {
var statusBarView: UIView? {
return value(forKey: "statusBar") as? UIView
}
}
// Set it from your view controller if you've view controller based statusbar
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
UIApplication.shared.statusBarView?.backgroundColor = UIColor.green
}
}
or
// Set upon application launch, if you've application based status bar
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
UIApplication.shared.statusBarView?.backgroundColor = UIColor.green
return true
}
}
这是结果:
您必须应用不同的约束。您的背景颜色应该一直延伸到安全区域之外,一直延伸到超级视图。因此,您的约束需要设置为背景颜色的超级视图,但需要设置为您的 ui 视图(按钮、tableView 等)的安全区域
最近我正在解决一个类似的问题。不同之处在于,在我看来,顶部的不安全区域必须被填充,而底部的则不需要。另一个区别是我的背景视图实际上是在 a 中scrollView
,这使得约束设置更加复杂。
我尝试了"statusBar"
上面提到的解决方案,但是我猜视图层次结构自 iOS 13 以来已经更改,因此这会导致崩溃。
最后我提出了解决问题的解决方案:
首先在视图控制器视图的最顶部添加状态栏 Bg 视图,将其顶部、前导和尾部对齐到安全区域的顶部、前导和尾部(statusBarBgView
在代码中)。同时,将原始填充背景(bgView
)的顶部约束设置为状态栏 Bg 视图的底部。
然后在 中viewDidLoad()
,调用如下方法:
private func fillSafeAreaIfNeeded() {
if let _ = UIApplication.shared.keyWindow?.safeAreaInsets.top {
statusBarBgView.translatesAutoresizingMaskIntoConstraints = false
statusBarBgView.topAnchor.constraint(equalTo: view!.topAnchor).isActive = true // This line fills up status bar
bgView.topAnchor.constraint(equalTo: statusBarBgView!.bottomAnchor).isActive = true
}
else {
statusBarBgView.frame = CGRect.zero
}
}
请注意,通过将bgView
'topAnchor 与statusBarBgView
'bottomAnchor 约束,可以避免滚动时两个视图之间的间隙。
if #available(iOS 13.0, *) {
let navBarAppearance = UINavigationBarAppearance()
navBarAppearance.configureWithTransparentBackground()
navBarAppearance.titleTextAttributes = [.foregroundColor: UIColor.white]
navBarAppearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
navBarAppearance.backgroundColor = .black
navigationController?.navigationBar.standardAppearance = navBarAppearance
navigationController?.navigationBar.scrollEdgeAppearance = navBarAppearance
}