Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS 8 Xcode how to remove QuickType on UIKeyboard ( auto complete / auto suggest ) [duplicate]

UIKeyboard with QuickType!

It is bad to know that there is no sufficient space of screen on iPhone devices, now apple has been taken more room by adding QuickType. How can I remove it for items that do not need quicktype's auto complete, auto suggest?

like image 909
Mike Zriel Avatar asked Jun 04 '14 07:06

Mike Zriel


People also ask

How do I get rid of QuickType?

To permanently disable QuickType suggestions, you can simply long press on the keyboard selector icon and slide the "Predictive" toggle off (thanks to Nick for the tip.) Alternatively, you can make a trip into your iPhone or iPad's Settings app.

How do I turn off autocomplete on my iPhone?

. Tap Keyboard Settings, then turn on Predictive. Or go to Settings > General > Keyboard, and turn Predictive on or off.


1 Answers

You can set the autocorrectionType to NO. Its an existing iOS property so won't break in any previous/current versions of iOS;

textField.autocorrectionType = UITextAutocorrectionTypeNo;
like image 147
William George Avatar answered Oct 26 '22 04:10

William George