I want to dismiss my keyboard as I press RETURN key.
I have tried by putting button in view\'s back side.
But how can I do this by pressing RETURN key?
I hope you have done UIViewController and yourTextField.delegate=self;
UIViewController
yourTextField.delegate=self
and then in the delegate method
- (BOOL)textFieldShouldReturn:(UITextField *)textField; { [textField resignFirstResponder]; return YES; }