how to make a keyboard in other language in iOS

2019-02-26 07:46发布

I want to create a khmer keyboard which is different from iPhone keyboard. How can I do that ?

4条回答
▲ chillily
2楼-- · 2019-02-26 08:23

Starting from iOS 4, UITextField and UITextView have a property called inputView. It should be a view able to receive the taps and send to the UIViewController that holds your text field. So, can create a UIViewController with delegate methods, and set it's view as the inputView of your UITextField or UITextView. So, assuming that MyCustomKeyboard is the UIViewController that is your keyboard, including the view and the delegate methods, in your viewDidLoad of your view controller, you should put:

MyCustomKeyboard *customKeyboard = [[MyCustomKeyboard alloc] init];
customKeyboard.delegate = self;
myTextField.inputView = customKeyboard.view;

And in your view controller you handle the delegate methods of your MyCustomKeyboard class.

If you want a tutorial, there is a good one in Ray Wenderlich website, you should do something similar to the iPhone.

查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-02-26 08:25

make a customize keyboard. take a UIView add UIButton and add what you want to all in this view.

查看更多
姐就是有狂的资本
4楼-- · 2019-02-26 08:29

I don't think it can be done just for one app, two options:

  • The user has to change to the correct language.

Since that is not what you want, there is option 2:

  • Implement your own keyboard (=huge amount of work)
查看更多
对你真心纯属浪费
5楼-- · 2019-02-26 08:36

Unfortunately, you cannot control the language of the keyboard. The user chooses which keyboards they would like available via the settings application and can toggle between them using the globe icon on the keyboard. When the keyboard is opened it will open to the most recently used keyboard.

查看更多
登录 后发表回答