如何在UILabel中设置字符和行之间的空格

时间:2013-07-13 16:40:07

标签: ios cocoa-touch uilabel

我想在第一行和第二行之间设置一个间距,在其他行之间需要另一个间距。这样,第二行和下一行必须具有特定的字符间距。

这一切都需要在一个控件中完成。我怎么能这样做?我决定为每一行创建一个单独的UILabel,但我认为这是错误的。

2 个答案:

答案 0 :(得分:1)

您无法更改文本行之间的间距,您必须子类化UILabel并滚动自己的drawTextInRect,创建多个标签或使用其他字体。

但是有两个自定义标签,允许您控制线高。

1)https://github.com/LemonCake/MSLabel

2)https://github.com/Tuszy/MTLabel

希望这会有所帮助......

在iOS6中,你可以这样做:

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
[paragraphStyle setLineSpacing:40];
[attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [labelText length])];
cell.label.attributedText = attributedString ;

答案 1 :(得分:1)

试试这个,它应该适合你(使用Swift 4)

let label = UILabel()
let stringValue = "How to\ncontrol\nthe\nline spacing\nin UILabel"
let attrString = NSMutableAttributedString(string: stringValue)
var style = NSMutableParagraphStyle()
style.lineSpacing = 24 // change line spacing between paragraph like 36 or 48
style.minimumLineHeight = 20 // change line spacing between each line like 30 or 40
attrString.addAttribute(NSAttributedStringKey.paragraphStyle, value: style, range: NSRange(location: 0, length: stringValue.characters.count))
// add strike
attrString.addAttribute(NSAttributedStringKey.strikethroughStyle, value: 2, range: NSMakeRange(0, attrString.length))
// add space between characters
attrString.addAttribute(NSAttributedStringKey.kern, value: 2, range: NSMakeRange(0, attrString.length))
label.attributedText = attrString


结果:

enter image description here