标签:
NSMutableParagraphStyle *paragraphStyle =[ [NSMutableParagraphStyle alloc] init];
paragraphStyle.lineSpacing = 50;
NSDictionary *attributes = @{ NSFontAttributeName:[UIFont
systemFontOfSize:14],NSParagraphStyleAttributeName:paragraphStyle };
LABLE.attributedText =[ [ NSAttributedString alloc] initWithString :lable.text attributes:attributes];
LABLE就是你创建的lable‘
标签:
原文地址:http://www.cnblogs.com/yevgeni/p/5582029.html