Reputation: 15639
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 should I do?
Upvotes: 5
Views: 1049
Reputation: 4686
You might want:
myTextField.keyboardType = UIKeyboardTypeEmailAddress;
Upvotes: 1
Reputation: 170829
Set autocapitalizationType
property of your text field to UITextAutocapitalizationTypeNone
Upvotes: 13