Reputation: 19122
I want to make sure some code I've written works well with Chinese and Japanese characters. I tried changing the iPhone Simulator language to Chinese and Japanese, but it doesn't look like the character set for the UITextFields change. How do you do that?
Upvotes: 0
Views: 1769
Reputation: 4134
I have come across the same (or similar) issue (chinese/japanese keyboards do not appear for UITextField
even though they are enabled in settings whilst others, such as french, do appear).
Eventually I discovered that I had set the KeyboardType
property to UIKeyboardTypeAlphabet
. Commenting out this line caused the non-latin keyboards to show as expected.
Upvotes: 3
Reputation: 25619
Go to Settings > General > International > Keyboards to enable the Japanese keyboard.
Upvotes: 1