I have changed the navigation bar height this way:
extension UINavigationBar {
override open func sizeThatFits(_ size: CGSize) -> CGSize {
return CGSize(width: UIScreen.main.bounds.width, height: 72)
}
}
After updating to Xcode 9 and iOS 11 it is not working. Please anyone help to fix that issue.