How to hide the keyboard assistant bar

Antonio

I'm working on an iPad app, and I am unable to hide the UIKeyboardAssistantBar, the bar shown above the soft keyboard, with text prediction etc. See picture below, which shows the full keyboard, just to give a reference - the bar I want to hide is above the keyboard (the one displaying "2")

Keyboard + assistant bar

The problem I have is when an external keyboard is used: the soft keyboard is not shown when a text view obtains the focus, but that assistant bar is always shown instead - the only way I've found so far is to let the user manually hide it, using the icon at the far right.

Ideally, the solution I'm looking for is a global call that enables or disables that, so that I don't have to handle that individually for each text view.

Any idea?

Thanh Pham

There is a trick that you can try. Here is the code:

let item = self.yourTextView.inputAssistantItem;
item.leadingBarButtonGroups = [];
item.trailingBarButtonGroups = [];

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to hide a mobile keyboard's upper bar?

From Dev

How to hide keyboard in UITableViewController?

From Dev

Hide shortcut keyboard bar for UIWebView in iOS 9

From Dev

Hide keyboard when navigation bar is touched

From Dev

Hide action bar on soft keyboard popup in fragment

From Dev

Navigation bar wont hide after closing keyboard

From Dev

How do I hide the Keyboard Form Accessory Bar in my Cordova / PhoneGap app on iOS 8?

From Dev

hide shortcuts bar when hide keyboard ios(Ipad)

From Dev

How to hide the bookmark bar?

From Dev

How to hide Android Soft Keyboard?

From Dev

How to hide header bar in ionic?

From Dev

How to hide status bar in UIImagepickercontroller?

From Dev

How to hide a temporary search bar?

From Dev

How to hide a progress bar in javascript

From Dev

How to Show and Hide the menu Bar

From Dev

How to hide scroll bar of UICollectionView

From Dev

How to hide bar button item

From Dev

How to hide modal scroll bar

From Dev

How to hide address bar in Chrome?

From Dev

How to Show and Hide the menu Bar

From Dev

How to hide the menu bar in Geany

From Dev

How to hide soft keyboard for a SearchView in Kotlin?

From Dev

How to hide a blue cursor in a textfield and a keyboard?

From Java

How to hide Soft Keyboard when activity starts

From Dev

How to hide soft keyboard when listbox is scrolled?

From Dev

how to hide keyboard in jquery mobile programmatically on focus()

From Dev

How to Show and Hide UIPickerView like iOS Keyboard?

From Dev

iOS 7: How to hide the DONE button on the keyboard

From Dev

How to show/hide the Android Soft Keyboard in dialog?