views:

291

answers:

2

How can i bring up the iphone uikeyboard with non-english language?

tnx :)

+2  A: 

really cant do it programatically, the user must have that keyboard enabled and then they can get to it, you can maybe tell the user they require a non english keyboard in an alert view or something like that.

Daniel
What if the user already have another language configure?
donodare
Then they can choose to use it, u can't force it programatically
Daniel
ok, tnx.cool..
donodare
+3  A: 

From the iPhone Application Programming Guide:

Depending on the needs of your program and the user’s preferred language, the system might display one of several different keyboards. Although your application cannot control the user’s preferred language (and thus the keyboard’s input method), it can control attributes of the keyboard that indicate its intended use, such as the configuration of any special keys and its behaviors.

[...]

To facilitate the language preferences of different users, iPhone OS also supports different input methods and keyboard layouts for different languages, some of which are shown in Figure 5-4. The input method and layout for the keyboard is determined by the user’s language preferences.

So it appears there's no way to bring up a keyboard of a different language than the user's preference.

Ben S