Nenhuma Descrição

UIApplication+Swizzle.swift 464B

1234567891011121314151617181920212223
  1. //
  2. // UIApplication+Swizzle.swift
  3. // PaiaiUIKit
  4. //
  5. // Created by FFIB on 2019/1/15.
  6. // Copyright © 2019 FFIB. All rights reserved.
  7. //
  8. import UIKit
  9. extension UIApplication {
  10. private static let classSwizzedMethodRunOnce: Void = {
  11. if #available(iOS 11.0, *) {
  12. UINavigationBar.swizzedMethod()
  13. }
  14. }()
  15. open override var next: UIResponder? {
  16. UIApplication.classSwizzedMethodRunOnce
  17. return super.next
  18. }
  19. }