iOS8 brings a lot of cool features, one of which is the addition of third-party input methods as application extensions. We should pay attention to this moment because application extensions open up a whole new category of applications and payment operations. With millions of applications in the App Store, developers and users will usher in a brand new day. In this post, I will show you how to create a third-party input method for your application that can perform system-wide input method operations. This tutorial will be done in Swift. This is my first real project in Swift and I love it. Now, let's jump right into how to create a third-party input method. First, let me show you the final effect of the input method we are going to build. The input method will be able to enter text in a text box, delete text, and implement other basic functions. More advanced functions such as context prediction and dictionary are beyond the scope of this tutorial. Create an Xcode Project Open Xcode 6 and create a new project. File->New->Project Name the project CustomKeyboardSample and save it in a suitable location. This is our main project, but we also need to add extensions. Now, let's add a Text Field to the project. Open the Main.Storyboard file and drag and drop a UITextField control on the view controller on the screen. This is where we'll test our input. Now it's time to add the extension. Click File-> New -> Target, select Custom Keyboard in the iOS/Application Extension list. Name the extension CustomKeyboard and select Swift programming language. Add extensions You should now have a new target folder called CustomKeyboard, with a file called KeyboardViewController.swift. Xcode has added some initial code for us and the keyboard should be functional (although not functional). Now you can try running CustomKeyboardSample and try out the new input method. When you click on the text box, the system keyboard will appear. We can use the globe icon at the bottom row to switch input methods, but this icon will not appear until we install our new keyboard. Go to the Home screen (tap the menu bar, Hardware->Home). Open Settings and go to General->Keyboard->Keyboards. Tap "Add New Keyboard" and select CustomKeyboard. Turn on the switch to enable it and agree to the warning message. Click Done and you’re ready to get started! If you run the app again on the simulator, you can switch input methods. Click the globe icon until you see a keyboard with only the "Next Keyboard" button. Now it's time to start adding input method buttons. Open the file KeyboardViewController.h. In this file, you will see a class KeyboardViewController that inherits from UIInputViewController. This is the keyboard class that manages the view. We can add buttons to the containing view and it will be displayed in the keyboard. Add a function called createButton
In the above code, we add a button programmatically and set its properties. We can do this with a nib file, but we will have to manage so many buttons. Therefore this is a better option. This code calls a method called didTapButton in response to a button being pressed. Now let's add a method.
In the above method, we use Swift to process a button event. The AnyObject type is like an object with an ID in Objective-C. We place a transmitter on the UIButton and then get the title text of the button, which is the text we want to enter in the text box. To enter text using the input method, we use the textDocumentProxy object and call the insertText method. The next step is to add a button to our keyboard view. Add two lines of code below the viewDidLoad method. You can delete the automatically generated code in the viewDidLoad and textDidChange methods. override func viewDidLoad() { super.viewDidLoad() let button = createButtonWithTitle("A") self.view.addSubview(button) } Added a button titled "A" to the input method. This is our key. Now, run the app and tap the text field, and you should see the "A" key on your keyboard. (You may need to switch keyboards.) Click this button and see what happens... Look! We already have the text A! Ok, let's add some more buttons to make this thing look like a real input method. Let's modify the code we added in the viewDidLoad method.
That's a long code, isn't it? With AutoLayout, you can't really set it up and you need to add all the constraints at once, otherwise it won't work. The main thing the code above does is add constraints with a margin of 1px to the top and bottom of each key. It also adds left and right margins of 1px to the left and right of the adjacent key (or to the row view if it's the first or last key in the row). If we add a call to the above function in viewDidLoad, we should see the new row buttons appear. Now this looks more like an input method. The next step is to add the other rows of the input method. To do this, let's do some quick refactoring. Create and implement new methods for adding each row of keys.
We have basically extracted the code from viewDidLoad into its own method. This new method stores the title text in an array and returns a view containing all the buttons for that row. Now we can call this code from anywhere we want to add code. So our new vieDidLoad method looks like this:
In the above code, we have added 4 rows of keys and then added these buttons, which in turn are added to the rows in the main view. We can run the code now, but you will only see the last row because they are all in the same position. We need to add some auto layout constraints.
This new method does something similar, except we added the latest Auto Layout code. It adds 1px constraints to the left and right sides of the row and below it relative to the main view and adds 0px constraints between each row and the row above it. Now, we need to call this code from our viewDidLoad method.
Here is our new viewDidLoad function. You’ll see that we set the TranslatesAutoresizingMaskIntoConstraints to false for each row. This is to ensure that the Auto Layout method is used more often than the constraints. Now if you run the app you will see that the input methods are all laid out properly and you can click on all the buttons to see them input into the text boxes. There is also a small issue where non-text keys don't work properly (e.g. backspace, spacebar). To fix this, we need to change our didTapButton method to add the correct methods for responding to these keys.
Here we use a switch statement to identify the pressed keys. The backspace key calls the deleteBackward method on the delegate, the spacebar inserts a space and the CHG key changes the input method to the system input method or installs the next input method. What's next? That's it. This tutorial gave you a rough idea of how to create a basic custom keyboard. Your homework is to refine this further and see if you can add more advanced features like adding uppercase letters using the Caps Lock key, switching to a number/symbol keyboard scheme, etc. Link to this article: http://www.cocoachina.com/ios/20140922/9706.html |
<<: The 4 levels of training for software engineers in Silicon Valley
>>: Android Wear isn't perfect yet: Nine things Google needs to fix right now
Since the birth of Android phones, flashing has a...
Mr. Crab: Introduction to the Black Technology Co...
If you want to know what it's like to use And...
From 2017 to 2019, China's Internet entered a...
If the battery consumption of the phone has becom...
After Baidu launched the Fengchao system, althoug...
How much does it cost to attract investment for t...
At the 2019 WeChat Open Class PRO, the intelligen...
[[243890]] After a long wait, the official versio...
[[133464]] Arstechnica: Microsoft is very ambitio...
2016 is the first year of video live streaming. W...
Written in front Recently, Baidu, the leader in C...
With the changes in the current economic situatio...
[[150342]] On the second day when the media paid ...
We all know that most of the fans on Toutiao are ...