1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import Foundation
- class NCMasterNavigationController: UINavigationController {
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- override func viewDidLoad() {
- super.viewDidLoad()
- self.delegate = self
-
- NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
- changeTheming()
- }
- @objc func changeTheming() {
- navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
- navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
- navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor:NCBrandColor.sharedInstance.brandText]
- }
- }
- extension NCMasterNavigationController: UINavigationControllerDelegate {
- func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
-
- if self.splitViewController?.isCollapsed == true {
- if (topViewController as? UITabBarController) != nil {
- self.isNavigationBarHidden = true
- } else {
- self.isNavigationBarHidden = false
- }
- } else {
- self.isNavigationBarHidden = true
- }
- }
- }
|