Files
Toaster/Sources/UIApplication+Load.swift
Andrey Chernoprudov ffb6c746a9 SPM support
2019-10-13 18:28:37 +05:00

23 lines
371 B
Swift

//
// UIApplication+Load.swift
// Toaster
//
// Created by SeongHo Hong on 28/08/2019.
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//
import UIKit
extension UIApplication {
open override var next: UIResponder? {
UIApplication.runOnce
return super.next
}
private static let runOnce: Void = {
_ = KeyboardObserver.shared
}()
}