Home | Account | Search  
iPhone :: Disable autocompletion on UITextField
In Interface Builder, in "Text Input Traits", set "Correction" to NO.

To achieve the same using Obj C:
theUITextField.autocorrectionType = UITextAutocorrectionTypeNo;