// // SelectLocationNavigationController.swift // MullvadVPN // // Created by pronebird on 22/07/2020. // Copyright © 2020 Mullvad VPN AB. All rights reserved. // import Foundation import UIKit class SelectLocationNavigationController: UINavigationController { override var childForStatusBarStyle: UIViewController? { return topViewController } override var childForStatusBarHidden: UIViewController? { return topViewController } init(contentController: SelectLocationViewController) { super.init(navigationBarClass: CustomNavigationBar.self, toolbarClass: nil) viewControllers = [contentController] } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } }