Hi all
can we make virtual keyboard always on,???
any code snippet?
regards shishir
Hi all
can we make virtual keyboard always on,???
any code snippet?
regards shishir
Well, you can show the keyboard in code like this:
[someTextField becomeFirstResponder];
Until you don't send the resignFirstResponder
message, the keyboard shouldn't disppear.
You'll need to have a UITextField
or UITextView
—probably the first one, in this case—set as the first responder. It doesn't have to be visible; you can call -becomeFirstResponder
on it while it's offscreen and it'll bring up the keyboard and capture any text entered therewith.