Certaines applications ont ce joli petit cercle blanc avec un x gris là-dedans UITextField. Comment puis-je l'ajouter à un UITextField et supprimer le texte lorsqu'il est tapé?Comment afficher ce petit cercle blanc dans un UITextField, afin que les utilisateurs puissent supprimer le texte?
5
A
Répondre
18
Pour ajouter un bouton comme celui-ci, vous pouvez utiliser la propriété clearButtonMode d'un UITextField.
Le code sera comme ceci:
// Show cancel button never
textField.clearButtonMode = UITextFieldViewModeNever;
// Show cancel button only when you're editing text in textField
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
// Show the cancel button only when you aren't editing the text
textField.clearButtonMode = UITextFieldViewModeUnlessEditing;
// Show always the cancel button
textField.clearButtonMode = UITextFieldViewModeAlways;
1
Vérifiez la propriété clearButtonMode.