Xccode10.1、swift4.x
Main.storyboardには、ViewController.swiftで、
@IBOutlet weak var textInput: UITextField!を配置。
KeyboardViewController.swiftとKeyboardView.xibでキーボードを実現。
該当のソースコード
KeyboardViewController.swiftのソース
import UIKit
class KeyboardViewController: UIInputViewController {
@IBOutlet var nextKeyboardButton: UIButton! override func updateViewConstraints() { super.updateViewConstraints() let v = UINib(nibName:"KeyboardView", bundle:nil).instantiate(withOwner: self,options:nil)[0] as! UIView self.inputView?.addSubview(v) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated } override func textWillChange(_ textInput: UITextInput?) { // The app is about to change the document's contents. Perform any preparation here. } override func textDidChange(_ textInput: UITextInput?) { // The app has just changed the document's contents, the document context has been updated. } @IBAction func buttonNext(sender: AnyObject) { self.advanceToNextInputMode() } @IBAction func button1(sender: AnyObject) { let proxy = textDocumentProxy as UITextDocumentProxy proxy.insertText("Button1") } @IBAction func button2(sender: AnyObject) { let proxy = textDocumentProxy as UITextDocumentProxy proxy.insertText("Button2") } @IBAction func button3(sender: AnyObject) { let proxy = textDocumentProxy as UITextDocumentProxy proxy.insertText("Button3") } @IBAction func button4(sender: AnyObject) { let proxy = textDocumentProxy as UITextDocumentProxy proxy.insertText("Button4") } @IBAction func button5(sender: AnyObject) { let proxy = textDocumentProxy as UITextDocumentProxy proxy.insertText("Button5") } @IBAction func button6(sender: AnyObject) { let proxy = textDocumentProxy as UITextDocumentProxy proxy.insertText("Button6") }
}
試したこと
Main.storyboardのtextInputフィールドを選んだら、オリジナルのキーボードを実現させる。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/25 07:55
2019/12/25 08:23