Dmitry
Dmitry

Reputation: 13

iPhone (non jailbreaked) device + custom keyboard

Is there any opportunity to change default keyboard on iPhone (in any iPhone application) to any custom one, and is it possible to do on NON jailbreaked device?

Upvotes: 1

Views: 302

Answers (2)

vincent
vincent

Reputation: 441

there are actually already different keyboards available :

  • ASCII capable
  • Numbers & Punctuation
  • URL
  • Number Pad
  • Phone Pad
  • Name Phone Pad
  • Email Address

but if you want a more sofisticated or a complete custom one, you'll have to create a view with several buttons and modify those methods to hide the default keyboard :

  • textViewShouldBeginEditing
  • textViewDidBeginEditing:
  • textViewShouldEndEditing
  • textViewDidEndEditing

Upvotes: 0

JustSid
JustSid

Reputation: 25318

Short answer: No.

Upvotes: 1

Related Questions