Preguntas etiquetadas con uitextfield

Un objeto UITextField es un control que muestra texto editable y envía un mensaje de acción a un objeto de destino cuando el usuario presiona el botón de retorno. Por lo general, utiliza esta clase para recopilar pequeñas cantidades de texto del usuario y realizar alguna acción inmediata, como una operación de búsqueda, basada en ese texto.


3
¿Obteniendo el valor de un UITextField cuando se ingresan las pulsaciones de teclas?
Digamos que tengo el siguiente código: IBOutlet UITextField* nameTextField; IBOutlet UILabel* greetingLabel; Me gustaría greetingLabelleer "Hola [nameTextField]" tan pronto como el usuario presione cualquier tecla. Lo que necesito básicamente es el iPhone equivalente al método delegado Cocoa controlTextDidChange. El textField:shouldChangeCharactersInRange:método delegado se llama cada vez que se pulsa una tecla: …




17
Swift agregar icono / imagen en UITextField
Me gustaría agregar un icono / imagen en UITextField. El icono / imagen debe dejarse como marcador de posición. Probé esto: var imageView = UIImageView(); var image = UIImage(named: "email.png"); imageView.image = image; emailField.leftView = imageView; Gracias.
101 ios  image  swift  login  uitextfield 

13
Cómo agregar TextField a UIAlertController en Swift
Estoy tratando de mostrar un UIAlertControllercon un UITextView. Cuando agrego la línea: //Add text field alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in } Me sale un Runtimeerror: error fatal: inesperadamente encontrado nil al desenvolver un valor opcional let alertController: UIAlertController = UIAlertController(title: "Find image", message: "Search for image", preferredStyle: .Alert) //cancel …

27
UITextfield leftView / rightView padding en iOS7
Las vistas leftView y rightView de un UITextField en iOS7 están muy cerca del borde del campo de texto. ¿Cómo puedo agregar algo de relleno (horizontal) a esos elementos? Intenté modificar el marco, pero no funcionó. uint padding = 10;//padding for iOS7 UIImageView * iconImageView = [[UIImageView alloc] initWithImage:iconImage]; iconImageView.frame …






Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.