charlax
charlax

Reputation: 26049

How to change the baseline of an UITextField?

How would you change the baseline of any text entered in a UITextField?

Upvotes: 1

Views: 2645

Answers (1)

Narbotic
Narbotic

Reputation: 116

The precise answer eludes me, but you can set the textField's vertical content alignment like this:

textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;

Upvotes: 10

Related Questions