Skip to content

Instantly share code, notes, and snippets.

@openopen114
Created June 30, 2016 02:33
Show Gist options
  • Save openopen114/2184656357758562aed9947186cbeaf4 to your computer and use it in GitHub Desktop.
Save openopen114/2184656357758562aed9947186cbeaf4 to your computer and use it in GitHub Desktop.
//class need add : UITextFieldDelegate
override func viewDidLoad() {
super.viewDidLoad()
//delegate
discountTextField.delegate = self
sizeTextField.delegate = self
//add gesture to view
self.view.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(InvCalcViewController.dismissKeyboard)))
}
// dismiss keyboard function
func dismissKeyboard(){
sizeTextField.resignFirstResponder()
discountTextField.resignFirstResponder()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment