2

Is there some default setting to center textfield vertically

Michael Dautermann
  • 87,822
  • 17
  • 159
  • 205

2 Answers2

7

Just add the following line of code.

textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
Vinayak Kini
  • 2,909
  • 21
  • 35
2

You can simply by using

textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;