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
Just make a simple function like this one..
-(IBAction)hideKeyboard:(id)Sender
{
[_textValue resignFirstResponder];
}
now go to ur nib file and connect this function with the textfield with didEndOnExit and you are good to go. Now when u will click outside ur textfield the keyboard will hide itself.