如何计算NSAttributeString和NSString的label高度

7 篇文章 0 订阅
7 篇文章 0 订阅

大家在网上可能看到很多关于计算label高度的帖子,其中关于NSString的label高度是没有问题的,但是遇到label需要设置NSAttributeString的时候,计算就不准确了,我们看到系统对于NSAttributeString有一个计算cgrect的方法

- (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options context:(NSStringDrawingContext *)context NS_AVAILABLE_IO


但是当我用该方法去计算以下这个NSAttributeString的高度时,总是不准确


NSMutableAttributedString *attributeStr = [[NSMutableAttributedString alloc] initWithString:m.detail];

NSMutableParagraphStyle *paragraphstyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];

paragraphstyle.lineSpacing = 5;

paragraphstyle.alignment = NSTextAlignmentRight;

paragraphstyle.lineBreakMode = kCTLineBreakByWordWrapping;

[attributeStr addAttribute:NSParagraphStyleAttributeName value:paragraphstyle range:NSMakeRange(0, [attributeStr length])];


最终发现使用UIView的sizeThatFits是可以的


NSMutableAttributedString *attributeStr = [[NSMutableAttributedString alloc] initWithString:m.detail];

NSMutableParagraphStyle *paragraphstyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];

paragraphstyle.lineSpacing = 5;

paragraphstyle.alignment = NSTextAlignmentRight;

paragraphstyle.lineBreakMode = kCTLineBreakByWordWrapping;

[attributeStr addAttribute:NSParagraphStyleAttributeName value:paragraphstyle range:NSMakeRange(0, [attributeStr length])];

self.timeDetailLabel.attributedText = attributeStr;

CGSize textSize = [self.orderVCTableViewCell.timeDetailLabel sizeThatFits:CGSizeMake(self.timeDetailLabel.frame.size.width, MAXFLOAT)];


但是该方法计算出来的height会变成2倍,暂时还没有发现为什么变成2倍了,以后发现会上来更新。






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值