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

textView设置字符行距

时间:2015-04-15 20:57:42      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

textview字符为富文本格式,可设置各种文本参数。

//textview改变字体的行间距

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];

    UIFont  * textFont;

     UIColor * textColor;

    paragraphStyle.lineSpacing = 7;// 字体的行间距

    NSDictionary *attributes = @{

                                 NSFontAttributeName:textFont,

                                 NSParagraphStyleAttributeName:paragraphStyle,

                                 NSForegroundColorAttributeName:textColor

                                 };

    textView.attributedText = [[NSAttributedString alloc] initWithString:textView.text attributes:attributes];

textView设置字符行距

标签:

原文地址:http://www.cnblogs.com/snail-007/p/4429665.html

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