secant-ios-wallet/secant/_Unmodularized/Utils/UIKit+Extensions.swift

15 lines
258 B
Swift

//
// UIKit+Extensions.swift
// secant
//
// Created by Lukáš Korba on 09.03.2023.
//
import UIKit
extension UIApplication {
func endEditing() {
sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}