gpt4 book ai didi

ios - 如何控制 UILabels 的行距?

转载 作者:可可西里 更新时间:2023-11-01 05:03:32 25 4
gpt4 key购买 nike

我在 UITableView 上使用 CustomCell 而不是 UITableViewCell

我在 CustomCell 上放置了两个 UILable

引用此站点:here ,但我失败了……

问题:如何控制 UILabel 的行距?

最佳答案

iOS 6 开始,您可以为 UILabel 设置一个属性字符串。检查以下内容:

NSMutableParagraphStyle *paragrahStyle = [[NSMutableParagraphStyle alloc] init];
[paragrahStyle setLineSpacing:40];
[attributedString addAttribute:NSParagraphStyleAttributeName value:paragrahStyle range:NSMakeRange(0, [labelText length])];

cell.label.attributedText = attributedString;

关于ios - 如何控制 UILabels 的行距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8252865/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com