0

In iOS, if you create a UIView that implements UIKeyInput, you can get a keyboard by becoming first responder. When that keyboard appears, it has a system defined inputAccessoryView, like this:

enter image description here

How do I make this go away, and get a bare keyboard?

Mike
  • 3,084
  • 1
  • 25
  • 44
  • 2
    Did you try setting the `autocorrectionType`? What happened when you tried it? – matt Apr 07 '15 at 22:13
  • This was not quite a duplicate of http://stackoverflow.com/questions/25951274/disable-ios8-quicktype-keyboard-programmatically-on-uitextview. That question referred to UITextView, while this one deals with UIViews that implement keyboard input. The clue is there, though: Adopt UITextInputTraits in your view, provide your own definition of autocorrectionType, then set it to UITextAutocorrectionTypeNo. – Mike Apr 08 '15 at 17:31
  • The clue was in my comment, was it not? – matt Apr 08 '15 at 17:39
  • Yes, and in the duplicate. I up voted your comment. :) – Mike Apr 08 '15 at 17:44

0 Answers0