I have a UILabel with a defined frame. The size of the frame is determined by auto layout properties. When the text of the label is to small I get it is located in the middle of the frame. Here is an example:
-------------------
- -
- A short Text -
- -
-------------------
I want that the text starts at the top of the label's frame like this:
-------------------
-A short Text -
- -
- -
-------------------
Not that the box I painted I the frame of the UILabel.
How can I achieve that the label is positioned at the top vertically as shown in the second image?