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?
You can turn off auto-capitalization with the .autocapitalizationType property in the UITextInputTraits protocol.
textfield.autocapitalizationType = UITextAutocapitalizationTypeNone;