Reputation: 1948
I'm working on an iPhone app and I've a problem: the text in my text field is drawn at the bottom. Can any one help me to display it centered?
Upvotes: 0
Views: 283
Reputation: 2177
Use the following instruction:
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
Upvotes: 1