1234567891011121314151617181920212223 |
- import UIKit
- extension UIApplication {
- private static let classSwizzedMethodRunOnce: Void = {
- if #available(iOS 11.0, *) {
- UINavigationBar.swizzedMethod()
- }
- }()
- open override var next: UIResponder? {
- UIApplication.classSwizzedMethodRunOnce
- return super.next
- }
- }
|