0

I want to create one keyboard application that is not in iPhone international keyboard, but I don't know how I add this application to international keyboard, I want to do one work like emoji application, but my app is not emotion!

Thanks for your help.

Fa.Shapouri
  • 988
  • 2
  • 12
  • 30
  • You want to install your keyboard in the system so it's available to any app? – Black Frog Apr 25 '11 at 13:36
  • Yes, I want add my keyboard on system but I'm not sure that is available to any app. There are sample on Apple Store so I think it is possible for any app. – Fa.Shapouri Apr 26 '11 at 05:06
  • Your app can include it's own custom keyboard for it's own use. – Black Frog Apr 26 '11 at 12:59
  • I believe I able use my keyboard in all application, Did you see emoji application? this keyboard come up from all applications. – Fa.Shapouri Apr 27 '11 at 06:29
  • 2
    The Emoji keyboard is already on the system because of Japanese users. All the Emoji application does is enable the keyboard. It doesn't install anything even if the screen say installing. – Black Frog Apr 27 '11 at 11:36

1 Answers1

0

Your application can display a custom keyboard from any TextView or TextField by returning a custom UIView (that would be your keyboard) from the inputView property on those text input views. There is no existing keyboard to inherit from, so you'll have to implement everything your self.

RyanR
  • 7,728
  • 1
  • 25
  • 39