I want to resign first responder of a UITextField object upon the user pressing done. Is there a way to do this using the interface builder alone? Or must I do it programmatically by using the delegate instance method:
-(BOOL)textFieldShouldReturn:(UITextField *)textField
It must be done programatically, you’d do it like this
You’d assign the doneEditing method to your Done button.