I've got a UILabel
with variable length content, when the content is long I want the text to be truncated. This part works:
However if the text is short then this is how it appears:
I don't understand why the start of the text is shifted to the right - because the text is left aligned and there is a 8.5 constraint between it leading edge and the UILabel's
to its left trailing edge:
When the text is short, why is it being shifted to the right?
How can I get it to be aligned to the left and be truncated when its too long to fit between the UILabel
on the left and the disclosure indicator to the right?