Reputation: 26049
How would you change the baseline of any text entered in a UITextField?
Upvotes: 1
Views: 2645
Reputation: 116
The precise answer eludes me, but you can set the textField's vertical content alignment like this:
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
Upvotes: 10