如何在缩放标签时调整多行或单行文本的大小

时间:2012-07-29 16:05:01

标签: iphone ios uilabel

我一直在寻找解决方案,但一直无法找到它。我有一个标签,我想根据缩放自动调整大小。

如果您知道如何操作,请提供一些行代码。

谢谢

1 个答案:

答案 0 :(得分:0)

由于您没有提供任何代码,我无法保证这将有效。但是,我发现this之前的问题涉及您遇到的同样问题。

以下是一些自动调整标签大小的代码:

cell.dateLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin;

cell.nameLabel.text = @"A name that should be truncated";
cell.dateLabel.text = @"A long date to use as an example";

希望这有帮助!