I am trying to disable the return key found when typing in a UITextView. I want the text to have no page indents like found in a UITextField. This is t
UITextView
UITextField
I know this is late reply but this code is perfect working for me. This will disable return key initially until type any character.
textfield.enablesReturnKeyAutomatically = YES;
By Interface Builder set this property,