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?
To avoid completely there are three properties that we can set
textField.autocapitalizationType = .none;
and
textfield.autocorrectionType = .no;
and
textField.spellCheckingType = .no
Only setting .autocapitalizationType = .none; works but better we set other both the properties to avoid capitalising from autocorrection and spell checking.