The text field calls different delegate methods (only if delegates are set)One of delegate method called by textfield is *- (BOOL)textFieldShouldReturn:(UITextField )textField
This method is called whenever users taps the return button.By using this method,
we can implement any custom behaviour.
...