Quote:
Originally Posted by cye
i have a uitextview, but i dont want the keyboard to display when i select it. i only want the blinking cursor.
is this possible?
|
QUOTE from the Apple UITextField documentation:
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.