Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.)

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to write this;-

*yourtextfieldname*.inputView=*yourcustomkeyboardviewname*;

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.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextField_Class/Reference/UITextField.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.