调整label间距
2016-11-16 本文已影响23人
ten3fang
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:contentLabel.text];
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];
[paragraphStyle setLineSpacing:5];
[attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, contentLabel.text.length)];
contentLabel.attributedText = attributedString;
//调节高度
CGSize rectSize = CGSizeMake(kScreenWidth-10, 500000);
CGSize labelSize = [contentLabel sizeThatFits:rectSize];