2

Is there some default setting to center textfield vertically

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215

2 Answers2

7

Just add the following line of code.

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

You can simply by using

textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;