We are in the process of upgrading to 3.0 and I have a use case that I'm not quite sure how to address with the new UILabel. We have blocks of text of varying sizes that need to fit into a particular space (think description text on inventory items). For most of our uses of UILabel, we are setting max lines = 0 and shrink to fit, which works fine. For these multiline descriptions, however, doing this can cause short lines of text to expand to fill the available space, which is not the preferred effect.
Until now we have been able to get by using one size font and letting UILabel scale it, but the only way I can see to create the desired effect here is to bake a new font at the appropriate size and use a non-scaling option (like clamp content) on the label. Is that right or am I missing something?