Keine Beschreibung

NavigationBarDelegate.swift 479B

1234567891011121314151617181920
  1. //
  2. // NavigationBarDelegate.swift
  3. // PaiaiUIKit
  4. //
  5. // Created by ffib on 2019/1/30.
  6. // Copyright © 2019 yb. All rights reserved.
  7. //
  8. import Foundation
  9. public protocol NavigationBarDelegate: class {
  10. func navigationBar(_ navigationBar: UINavigationBar, shouldPush item: UINavigationItem) -> Bool
  11. }
  12. public extension NavigationBarDelegate {
  13. func navigationBar(_ navigationBar: UINavigationBar, shouldPush item: UINavigationItem) -> Bool {
  14. return true
  15. }
  16. }