码迷,mamicode.com
首页 > 其他好文 > 详细

设置lable文本内容的行间距

时间:2016-06-13 21:53:43      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

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‘

设置lable文本内容的行间距

标签:

原文地址:http://www.cnblogs.com/yevgeni/p/5582029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!