美文网首页
多行label设置间距(NSMutableAttributedS

多行label设置间距(NSMutableAttributedS

作者: kai_strong | 来源:发表于2020-12-24 17:13 被阅读0次
        UILabel *reasonLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, 15, UIScreenWidth - 30, textHeight)];
        reasonLabel.textColor = [UIColor colorWithHexString:@"#999999"];
        reasonLabel.numberOfLines = 0;
        reasonLabel.font = [UIFont systemFontOfSize:14];
        reasonLabel.adjustsFontSizeToFitWidth = YES;

//核心代码
NSMutableAttributedString * attributedString1 = [[NSMutableAttributedString alloc] initWithString:tempString];
            NSMutableParagraphStyle * paragraphStyle1 = [[NSMutableParagraphStyle alloc] init];
//间距为5
            [paragraphStyle1 setLineSpacing:5];
            [attributedString1 addAttribute:NSParagraphStyleAttributeName value:paragraphStyle1 range:NSMakeRange(0, [tempString length])];
            [reasonLabel setAttributedText:attributedString1];
            [reasonLabel sizeToFit];

[self.view addSubview:reasonLabel];

相关文章

网友评论

      本文标题:多行label设置间距(NSMutableAttributedS

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