美文网首页
段落行间距字间距

段落行间距字间距

作者: 秋分落叶 | 来源:发表于2019-05-16 16:38 被阅读0次

    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:labelText attributes:@{NSKernAttributeName:@(1.1)}];

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];

    [paragraphStylesetLineSpacing:3];

    [attributedStringaddAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [labelText length])];

    titleLab.attributedText= attributedString;

    [topBGaddSubview:titleLab];

相关文章

网友评论

      本文标题:段落行间距字间距

      本文链接:https://www.haomeiwen.com/subject/mnniaqtx.html