我在 CustomCell
上使用 UITableViewCell
而不是 UITableView
。
我在 UILables
上放了两个 CustomCell
。
引用这个网站: here ,但我失败了...
问题:如何控制 UILabels 的行距?
最佳答案
从 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/