When I try to edit texts in my iPhone application (UITextfield), it auto-corrects my input.
UITextfield
Could you let me know how can I disable this?
You can use the UITextInputTraits protocol to achieve this:
UITextInputTraits
myInput.autoCorrectionType = UITextAutocorrectionTypeNo;
See here for more details.