Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable auto correction of UITextField

When I try to edit texts in my iPhone application (UITextfield), it auto-corrects my input.

Could you let me know how can I disable this?

like image 377
ebaccount Avatar asked May 05 '09 23:05

ebaccount


People also ask

How do I remove auto correct from iPad?

On the Home screen of your device, tap Settings, then tap General. Tap Keyboard, then turn off Auto-Correction.


1 Answers

UITextField* f = [[UITextField alloc] init]; f.autocorrectionType = UITextAutocorrectionTypeNo;         
like image 138
George Armhold Avatar answered Oct 04 '22 21:10

George Armhold