0

So this is a pretty straight forward question.

How do I best accumulate for special characteres to be vertically centered inside a UILabel?

See example images:

Centered:

enter image description here

Not centered:

enter image description here

Pedroinpeace
  • 1,419
  • 1
  • 14
  • 20
  • Text in `UILabel` is always vertical centred. In your image it is also centred but seams there is line height that is giving space from bottom. Good explanation on topic [Vertically align text within a UILabel](http://stackoverflow.com/questions/1054558/vertically-align-text-within-a-uilabel?page=1&tab=active#tab-top) – Nazir Dec 23 '15 at 15:28

1 Answers1

0

You may try use UITextField instead, also set textField.userInteractionEnabled = NO; and textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;

kisekied
  • 11
  • 5