How to change the baseline of an UITextField?
How would you change the baseline of any text entered in a UITextField?
The precise answer eludes me, but you can set the textField's vertical content alignment like this:
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
精彩评论