How can I put first character small in UITextField in iphone?
I want to insert an email address so the first character will be lower case, but when the keyboard comes up, the first character is capital. What s开发者_开发百科hould I do?
Set autocapitalizationType
property of your text field to UITextAutocapitalizationTypeNone
You might want:
myTextField.keyboardType = UIKeyboardTypeEmailAddress;
精彩评论