I have a text box and I am only interested in capitalizing the first letter, So how to do that in iPhone UITextField.
try this:
tf = [[UITextField alloc] init];
tf.autocapitalizationType = UITextAutocapitalizationTypeSentences;
or set this property in the properties inspector in Interface Builder