1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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()
-
- guard let splitViewController = self.splitViewController else { return }
-
- if let navigationController = splitViewController.viewControllers[splitViewController.viewControllers.count-1] as? UINavigationController {
-
- if splitViewController.isCollapsed {
-
- navigationController.topViewController?.navigationItem.backBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_back_", comment: ""), style: UIBarButtonItem.Style.plain, target: nil, action: nil)
-
- } else {
-
- navigationController.topViewController?.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem
- }
- }
- }
- @objc func changeTheming() {
- navigationBar.barTintColor = NCBrandColor.sharedInstance.backgroundView
- navigationBar.tintColor = NCBrandColor.sharedInstance.brandElement
- }
- }
- 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
- }
- }
- }
|