androidcoder1234
androidcoder1234

Reputation: 83

Text in Textfield starts in Middle of TextField IOS

Hello the placeholder text, and the text the user inputs, starts in the middle of my textfield. I have the textfield as 30% of the screen height, so I can't simply make the textfield smaller. How do I make the text start in the top left corner?

Upvotes: 7

Views: 4222

Answers (2)

stackich
stackich

Reputation: 5207

This is how you can choose top-left in Storyboard:

1

Upvotes: 0

Rashwan L
Rashwan L

Reputation: 38833

What you want to do is both a horizontal and vertical alignment like this:

textField.textAlignment = .left
textField.contentVerticalAlignment = .top

Result:

Upvotes: 19

Related Questions