UINavigationController+Extension.swift 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // UINavigationController+Extension.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 02/08/2022.
  6. // Copyright © 2022 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. extension UINavigationController {
  25. // https://stackoverflow.com/questions/6131205/how-to-find-topmost-view-controller-on-ios
  26. override func topMostViewController() -> UIViewController {
  27. return self.visibleViewController!.topMostViewController()
  28. }
  29. func setNavigationBarAppearance() {
  30. navigationBar.tintColor = .systemBlue
  31. let standardAppearance = UINavigationBarAppearance()
  32. standardAppearance.configureWithDefaultBackground()
  33. standardAppearance.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.label]
  34. standardAppearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.label]
  35. navigationBar.standardAppearance = standardAppearance
  36. let scrollEdgeAppearance = UINavigationBarAppearance()
  37. scrollEdgeAppearance.configureWithDefaultBackground()
  38. scrollEdgeAppearance.backgroundColor = .systemBackground
  39. scrollEdgeAppearance.shadowColor = .clear
  40. scrollEdgeAppearance.shadowImage = UIImage()
  41. navigationBar.scrollEdgeAppearance = scrollEdgeAppearance
  42. }
  43. func setGroupAppearance() {
  44. navigationBar.tintColor = .systemBlue
  45. let standardAppearance = UINavigationBarAppearance()
  46. standardAppearance.configureWithDefaultBackground()
  47. standardAppearance.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.label]
  48. standardAppearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.label]
  49. standardAppearance.backgroundColor = .systemGray6
  50. navigationBar.standardAppearance = standardAppearance
  51. let scrollEdgeAppearance = UINavigationBarAppearance()
  52. scrollEdgeAppearance.configureWithDefaultBackground()
  53. scrollEdgeAppearance.backgroundColor = .systemGroupedBackground
  54. scrollEdgeAppearance.shadowColor = .clear
  55. scrollEdgeAppearance.shadowImage = UIImage()
  56. navigationBar.scrollEdgeAppearance = scrollEdgeAppearance
  57. }
  58. func setMediaAppreance() {
  59. setNavigationBarHidden(true, animated: false)
  60. }
  61. }