Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 should I do?

like image 494
Chatar Veer Suthar Avatar asked Mar 29 '11 12:03

Chatar Veer Suthar


People also ask

How do you capitalize the first letter in IOS?

Open the Settings app. Tap the section called "General." Tap "Keyboard." Tap "Auto-Capitalization" to toggle it off.

What is UITextField?

An object that displays an editable text area in your interface.


2 Answers

Set autocapitalizationType property of your text field to UITextAutocapitalizationTypeNone

like image 70
Vladimir Avatar answered Sep 18 '22 19:09

Vladimir


You might want:

myTextField.keyboardType = UIKeyboardTypeEmailAddress;
like image 25
Wex Avatar answered Sep 19 '22 19:09

Wex