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

久未见 提交于 2019-11-30 16:33:57

问题


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?


回答1:


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;


来源:https://stackoverflow.com/questions/24031362/ios-8-xcode-how-to-remove-quicktype-on-uikeyboard-auto-complete-auto-suggest

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!