Search code examples
iosautocompleteuikeyboardautosuggest

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


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?


Solution

  • 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;