rounak
rounak

Reputation: 9387

Textfield in the keyboard

How do you make a keyboard have a textfield inside like the messages app ?

Upvotes: 4

Views: 558

Answers (2)

shannoga
shannoga

Reputation: 19869

never tried but you can try this -

You can programmatically

  1. set a tool bar.
  2. set a textfield.
  3. set the tool bar as the inputAccessoryView of the textfield.
  4. make the textfield the first responder.

Upvotes: 2

Aurum Aquila
Aurum Aquila

Reputation: 9126

It depends what you're trying to do with it. You could simply create a view that looks like the keyboard section and show it right above the keyboard. If you're trying to actually send SMSs/emails, look up the MessageUI documentation.

Upvotes: 1

Related Questions