I'm developing PhoneGap application for iOS and I need to disable auto predictive text on Keyboard.
I found a lot of solutions for UITextView
like these:
Disable iOS8 Quicktype Keyboard programmatically on UITextView
ios8 xcode how to remove QuickType on UIKeyboard ( auto complete / auto suggest )
... but PhoneGap app has UIWebBrowserView
inside.
Also I know about html attributes for disabling auto prediction. They work well only for regular html inputs, but I have contenteditable
element on my UIWebBrowserView
which is an editable area of text editor (CKEditor in my case).
<!-- Does not work -->
<div contenteditable="true" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</div>
So, is there a way to disable autoprediction functionality for contenteditable elements programmatically on iOS?
Greatly appreciate any help!