Existe-t-il un moyen d'aligner verticalement du texte dans un fichier de type UITextField
à mi-chemin entre UIControlContentVerticalAlignmentCenter
y UIControlContentVerticalAlignmentBottom
ou dois-je choisir l'un d'entre eux ?
Réponse
Trop de publicités?
Vrol
Points
672
Vous devez sous-classer un UITextField et remplacer les méthodes suivantes :
- (CGRect) textRectForBounds: (CGRect) bounds
{
CGRect origValue = [super textRectForBounds: bounds];
/* Just a sample offset */
return CGRectOffset(origValue, 0.0f, 4.0f);
}
- (CGRect) editingRectForBounds: (CGRect) bounds
{
CGRect origValue = [super textRectForBounds: bounds];
/* Just a sample offset */
return CGRectOffset(origValue, 0.0f, 4.0f);
}