我一直在寻找解决方案,但一直无法找到它。我有一个标签,我想根据缩放自动调整大小。
如果您知道如何操作,请提供一些行代码。
谢谢
答案 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";
希望这有帮助!