iOS custom keyboard has stuff I don't want attached to it

I'm building an iPad app. I have a custom screen keyboard attached to a text field, which all works. But when it pops up, there is this other thing on top of it, containing four controls. These appear to be undo and redo arrows, copy-to-pasteboard, and a down-arrow over on the right. The down-arrow on the right makes this extra stuff go away, but not permanently. The other three controls don't seem to do anything.

I don't want this stuff. I haven't figured out how to make it go away in code. I tried setting the text field's inputAccessoryView to nil. Didn't help.

What is this thing? How do I make it go away? If I wanted to use it, how would I?

Accepted Reply

I'm building an iPad app

In that case, seen the suggestions here?

h ttps://medium.com/@gopalkrishnareddy/how-to-remove-hide-undo-redo-copy-paste-suggestion-bar-from-the-top-of-keyboards-for-7a81c39ccb58


Replies

I'm building an iPad app

In that case, seen the suggestions here?

h ttps://medium.com/@gopalkrishnareddy/how-to-remove-hide-undo-redo-copy-paste-suggestion-bar-from-the-top-of-keyboards-for-7a81c39ccb58


That fixed it. Thanks!