1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
- changeTheming()
- }
-
- override func viewWillLayoutSubviews() {
- super.viewWillLayoutSubviews()
-
- if self.splitViewController?.isCollapsed == false {
- if (self.splitViewController != nil) {
- if let navigationController = self.splitViewController!.viewControllers[self.splitViewController!.viewControllers.count-1] as? UINavigationController {
- navigationController.topViewController!.navigationItem.leftBarButtonItem = self.splitViewController!.displayModeButtonItem
- }
- }
- }
- }
- @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
- }
- }
- }
|