I am having trouble in setting the text of a UILabel's text to be top aligned.
I have read some answers in stackoverflow and I tried: Vertically align text to top within a UILabel
self.label.text = @"Hello world";
[self.label setNumberOfLines:0];
[self.label sizeToFit];
The label's height is 67 pixel long. But when I run it, the text is vertically centered in the label. So how can I make it to top aligned?