sandy
sandy

Reputation: 1948

Text field text drawn at bottom instead of centre

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

Answers (1)

Francesco Puglisi
Francesco Puglisi

Reputation: 2177

Use the following instruction:

textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;

Upvotes: 1

Related Questions