I\'d like to know the simplest code to dismiss the number pad keyboard when tapping anywhere outside the number pad. It\'s a simple application to input a number inside a te
For Swift Use Below Code
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) { textFiled.resignFirstResponder() }
Check out latest update on following Link