How do you make it so that when you start typing on the keyboard after youve clicked on a UITextfield the first letter isn't a capital automatically?
In Objective-C:
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
In Swift:
textField.autocapitalizationType = .none