tamaño - insertar imagen en firma mail iphone
Primera letra en UiTextField en minúsculas (9)
¿Cómo lo hace para que cuando empiece a escribir en el teclado después de haber hecho clic en un UITextfield, la primera letra no sea un capital automáticamente?
En Swift:
textField.autocapitalizationType = UITextAutocapitalizationType.None
Prueba este código:
textfieldname.autocapitalizationType = UITextAutocapitalizationTypeNone;
Puede desactivar el uso de mayúsculas automático con la propiedad .autocapitalizationType
en el protocolo UITextInputTraits.
textfield.autocapitalizationType = UITextAutocapitalizationTypeNone;
Puede establecer las mayúsculas para TextField en los rasgos de entrada de texto de los atributos del campo de texto en XIB (interfaz Builder). Espero que esto te ayude
Rápido
yourTextField.autocapitalizationType = .none
establecer setAutocapitalizationType: UITextAutocapitalizationTypeNone para UITextField.
este código mostrará en minúscula toda la entrada del campo de texto al escribir cualquier cosa en su campo de texto
func textField(_ textFieldToChange: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
//just change this charectar username it''s a text field
if textFieldToChange == username {
let characterSetNotAllowed = CharacterSet.whitespaces
if let _ = string.rangeOfCharacter(from:NSCharacterSet.uppercaseLetters) {
return false
}
if let _ = string.rangeOfCharacter(from: characterSetNotAllowed, options: .caseInsensitive) {
return false
} else {
return true
}
}
return true
}
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
para Swift
textField.autocapitalizationType = .none