Created
August 6, 2020 14:20
-
-
Save maysamsh/b3ae0f04612c8e08579508428320229e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIViewController+Ext.swift | |
// | |
// | |
// Created by Maysam Shahsavari on 2020-08-06. | |
// | |
import Foundation | |
import UIKit | |
extension UIViewController { | |
func shouldResignKeyboardOnTap() { | |
let tap = UITapGestureRecognizer(target: self, action: #selector(endEditingFields)) | |
self.view.addGestureRecognizer(tap) | |
} | |
@objc func endEditingFields (){ | |
view.endEditing(true) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment