I am doing a customized keyboard, but I don't know how to show it in uitextfield. How can I do this ? (I use UIView as my keyboard and design in file nib.)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need to write this;-
From Apple Docs:- inputView The custom input view to display when the text field becomes the first responder. @property (readwrite, retain) UIView *inputView Discussion If the value in this property is nil, the text field displays the standard system keyboard when it becomes first responder. Assigning a custom view to this property causes that view to be presented instead. The default value of this property is nil. |
|||
|
|