作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
实际上我需要在自定义 View 类中获取导航栏。我可以在我的 View Controller 类中获取导航栏高度。如何获取 UIView/Utiity 公共(public)类中的导航栏高度? 。我只有一个 View Controller ,并在该类中添加了导航 Controller 。我想在任何自定义 View 中访问该导航栏高度。
// works in view controller
var navigationBarHeight: CGFloat {
return UIApplication.shared.statusBarFrame.size.height +
(self.navigationController?.navigationBar.frame.height ?? 0.0)
}
最佳答案
您可以使用以下方法获取导航栏的高度:
guard let rootVC = UIApplication.shared.keyWindow?.rootViewController as? UINavigationController else { return }
let navigationBarHeight = rootVC.navigationBar.frame.height
关于ios - 如何在 Swift 中的 UIView/Utility 类中获取导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59065414/
我是一名优秀的程序员,十分优秀!