iOS首行缩进

前端之家收集整理的这篇文章主要介绍了iOS首行缩进前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
// 设置富文本:首行缩进
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc]init];
style.firstLineHeadIndent = self.titleLabel.frame.size.width + 4;
NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:self.descLabel.text];
[attrString addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(0,self.titleLabel.text.length)];

self.descLabel.attributedText = attrString;

猜你在找的程序笔记相关文章