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

Mike Zriel picture Mike Zriel · Jun 4, 2014 · Viewed 11.1k times · Source

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?

Answer

William George picture William George · Jun 5, 2014

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;