gpt4 book ai didi

ios - UITableViewCell 中的标签,更改第二行字体大小,添加边距?

转载 作者:行者123 更新时间:2023-11-28 07:01:20 24 4
gpt4 key购买 nike

我有一个使用 UITableViewCell 并由来自 parse.com 的数据填充的表格 View 。在 UITableViewCell 中有一个包含 2 行的 LABEL,显示来自 parse.com 的数据。

我想知道是否可以更改 LABEL 第二行的字体大小(保持第一行的字体大小相同),还有没有办法在标签的左侧和右侧添加边距标签?

编辑:打错了,我想更改标签第二行的字体大小,以及在标签的左侧和右侧添加边距。

最佳答案

在我的解决方案中,我使用 UILabelattributedText 将属性字符串添加到标签

var attributedString = NSMutableAttributedString(string:"My first line \n")
//creating NSMutableAttributedString that will be later appended with your second line

var secondLine = "My attributed second line"
let secondLineAttribute = [NSFontAttributeName : UIFont(name: label.font.fontName, size: 22)!]
//replace 22 with the size of text you want for second line
var newAttributedSecondLine: NSAttributedString = NSAttributedString(string: secondLine, attributes: secondLineAttribute)
attributedString.appendAttributedString(newAttributedSecondLine)

label.attributedText = attributedString

不要忘记在上面的代码前加上label.numberOfLines=2

关于ios - UITableViewCell 中的标签,更改第二行字体大小,添加边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31955703/

24 4 0