I want to show the UIKeyboard upon tapping a UIButton and display the text (typed by the user) on a UILabel. Is this possible?
|
|
||||
|
|
|
You can create a hidden UITextField, and set it as firstResponder. As you inputing any chars, copy those chars from hidden UITextField to UILabel. |
|||
|
|
|
Why not just replace the label with an appropriately-styled (visible) UITextField? Then swap it back when the user taps the button again (or a Done button somewhere). |
|||
|
|
|
This is sorta the opposite of what you want, but this this you can just mess with the code and have it make the keyboard visible on buttonpress. Also in this example, the change is triggered when the user touches the background. You can just set this to whatever button you want instead of the background. Hiding the Keyboard when the User Taps the Background
Select the
|
||||
|
|