hi i am working on UITextview
how to Resign Keyboard, after keyboard \"Done button\" click Action, which XIB
Thank you
Create an IBAction and in IB hook it up to the UITextfield's DidEndOnExit event. Then call the [textViewName resignFirstResponder] to make the keyboard go away.
IBAction
UITextfield
DidEndOnExit
[textViewName resignFirstResponder]
Alternatively, try using [self.view endEditing:YES] in the IBAction.
[self.view endEditing:YES]