Search code examples
ioscordovauitextfieldlowercase

Make first letter in UiTextField lowercase (Phonegap for iOS)


When I type the letter in username field, the first letter always a capital. How can I make the first letter in UITextField lowercase. I don't know how to fix this in Phonegap.

<form id="loginForm">
<div   class="ui-hide-label">
    <label for="username">Username:</label>
    <input type="text" name="username" id="username"  value="" placeholder="Username" />
</div>
</form>

Solution

  • I don't know about Phonegap, but with a normal UITextfield you can use this line (where textField is the outlet for a UITextField):

    textField.autocapitalizationType = UITextAutocapitalizationTypeNone;