I am using a custom inputView for some textfield, however when i call resignFirstResponder on the textfield, the custom input view does not dismiss...any suggestions?
UITextField *f=[[UITextfield alloc] init];
UIView *view=[[UIView alloc] initWithFrame..];
[f setInputView:view]; //random example of how to set a textfields input view to a custom view
After some research, this issue only occurs when working with a viewController thats presented in a modal view...it works ok otherwise...
Thanks
-Daniel
If you use a modal view, make make sure to enable automatic keyboard dismissal. Add this code to your view controller: