1

In an iPhone app, when the user clicks a UITextField, this keyboard is displayed. I would like to remove the bar/area containg "<", ">" and "Done".

Any suggestions how to do that?

The keyboard toolbar

SOLVED It turned out that it was IQKeyboardManager that was adding the bar on top of the keyboard.

It was removed by this line in AppDelegate file:

IQKeyboardManager.sharedManager().enableAutoToolbar = false
Tamás Sengel
  • 55,884
  • 29
  • 169
  • 223
Rasmus
  • 2,783
  • 2
  • 33
  • 43
  • Is the from a `UITextField` or an input field in a web view? If it is really from a `UITextField` then the toolbar must be one you have added. Simply don't add it. – rmaddy Aug 13 '15 at 20:16
  • 1
    Thanks, you let me on the right track – Rasmus Aug 23 '15 at 17:06

1 Answers1

3

try :

self.<yourTextField/View>.inputAccessoryView?.hidden = true