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

解决NSAttributedString与UILabel高度自适应计算问题

时间:2016-06-14 13:47:48      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:

两个类扩展方法:

/**

 *  修改富文本的颜色

 *

 *  @param str   要改变的string

 *  @param color 设置颜色

 *  @param range 设置颜色的文字范围

 *

 *  @return 新的AttributedString

 */

- (NSMutableAttributedString *)setTextColorWithStr:(NSString *)str Color:(UIColor *)color Range:(NSRange)range;

 

/**

 *  修改富文本的字体

 *

 *  @param str   要改变的string

 *  @param font  设置字体

 *  @param range 设置字体的文字范围

 *

 *  @return 新的AttributedString

 */

- (NSMutableAttributedString *)setTextFontWithStr:(NSString *)str Font:(UIFont *)font Range:(NSRange)range;

 

两个类扩展方法的实现:

- (NSMutableAttributedString *)setTextColorWithStr:(NSString *)str Color:(UIColor *)color Range:(NSRange)range{

    if (str == nil) return nil;

    NSMutableAttributedString *newStr = [[NSMutableAttributedString alloc] initWithString:str];

    [newStr addAttribute:NSForegroundColorAttributeName value:color range:range];

    return newStr;

}

- (NSMutableAttributedString *)setTextFontWithStr:(NSString *)str Font:(UIFont *)font Range:(NSRange)range{

     if (str == nil) return nil;

     NSMutableAttributedString *newStr = [[NSMutableAttributedString alloc] initWithString:str];

    [newStr addAttribute:NSFontAttributeName value:font range:range];

    return newStr;

}

 

//消息内容frame

//先给定一个宽度,高度无限大

CGFloat CommenntWidth = 300;

    CGSize maxSize = CGSizeMake(CommenntWidth, MAXFLOAT);

//设定attributedString的字体及大小,一定要设置这个,否则计算出来的height是非常不准确的

    [attributedString addAttribute:NSFontAttributeName value:BKFont(16) range:RANGE(0, attributedString.length)];

//计算attributedString的rect

    _contentRect = [attributedString boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin context:nil];

 

此文为原文,转发请注明出处,谢谢!

解决NSAttributedString与UILabel高度自适应计算问题

标签:

原文地址:http://www.cnblogs.com/haohao-developer/p/5583482.html

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