How to Disable autocomplete in UITextView iPhone keyboard

Viewed 19647

I am doing the application in which I want to disable the autocomplete feature of the keyboard in a textfield. How can I do this?

2 Answers

Use epatel's method if you're using IB. If you're not using IB, then try the method

-setAutoCorrectionType:

and pass UITextAutocorrectionTypeNo

Related