uitextfield set la longueur maximale

extend UITextFieldDelegate

public func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
    return range.location < 15
}
Wicked Wolf