For some reason, even though I disable the auto-cap and auto-correct of my UITextField, it\'s still capitalizing the first letter of my input.
Here is the code:
Updated the correct answer for Swift 5
textField.autocorrectionType = .no textField.autocapitalizationType = .none textField.spellCheckingType = .no