I have set a custom inputView to my UITextField. I need a way to display the data selected in my custom inputView in the UITextf
inputView
UITextField
UITextf
When sending input from your custom input view back to the textfield, note that you can (should) use the UIKeyInput protocol methods that UITextField conforms to. Namely:
UIKeyInput
- (void)deleteBackward; - (void)insertText:(NSString *)text;