美文网首页
iOS //设置缩进、行距

iOS //设置缩进、行距

作者: panda_熊猫 | 来源:发表于2018-06-02 14:26 被阅读8次
//设置缩进、行距
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
style.headIndent = 40;//缩进
style.firstLineHeadIndent = 0;
style.lineSpacing = 0;//行距
NSMutableAttributedString *text = [[NSMutableAttributedString alloc]initWithString:self.addressLabel.text];
[text addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(0, text.length)];

相关文章

网友评论

      本文标题:iOS //设置缩进、行距

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