12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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
- }
- }
- }
|