I'm calling sizeToFit
on a UILabel
which has right aligned text in it. It shrinks the height and width of the UILabel
and fits the text to the top left of the UILabel
.
Now...the position of the UILabel
is incorrect. How can I make the UILabel
stay in its original position (right aligned) or move it so it'll appear at its original position?
Once again - the problem is that the sizeToFit
method is shrinking the width from the right side of the UILabel
. It is treating the UILabel
text as left aligned. But my text is right aligned. So, the right side border of the UILabel
is where my text begins.