1

我一直在寻找解决此问题的方法,但一直找不到。我有一个标签,我想根据缩放自动调整大小。

如果您知道如何执行此操作,请提供几行代码。

谢谢

4

1 回答 1

0

由于您没有提供任何代码,我不能保证这会奏效。但是,我发现这个先前的问题处理了您遇到的相同问题。

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

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";

希望这可以帮助!

于 2012-07-29T16:38:19.900 回答