¿Inserción de texto para UITextField?
Me gustaría insertar el texto de un UITextField
.
es posible?
Aceptado
La anulación -textRectForBounds:
solo cambiará el inserto del texto del marcador de posición. Para cambiar el inserto del texto editable, también debe anular-editingRectForBounds:
// placeholder position
- (CGRect)textRectForBounds:(CGRect)bounds {
return CGRectInset(bounds, 10, 10);
}
// text position
- (CGRect)editingRectForBounds:(CGRect)bounds {
return CGRectInset(bounds, 10, 10);
}
Pude hacerlo a través de:
myTextField.layer.sublayerTransform = CATransform3DMakeTranslation(5, 0, 0);
Por supuesto, recuerde importar QuartzCore y también agregar Framework a su proyecto.