I'm using a UILabel
in collection view cell which is centre aligned and has multiple lines. I'm using adjustFontSizeToFitWidth = YES
and minimumFontScale = 0.5
to reduce the font size when text does not fit. This works fine in iOS 7.
But in iOS 6 the text alignment goes to the left. To align it to centre I used adjustLetterSpacingToFitWidth = NO
which I found in other threads, this aligns the text to centre but the text doesn't fit and leaves a "..." trail in the end.
Thanks for the help!