动态计算文字的高度
Posted 超神船长
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态计算文字的高度相关的知识,希望对你有一定的参考价值。
+ (CGSize)sizeWithText:(NSString *)text andFont:(UIFont *)font andMaxSize:(CGSize)maxSize { CGSize expectedLabelSize = CGSizeZero; NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init]; paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping; [paragraphStyle setLineSpacing:0]; NSDictionary *attributes = @{NSFontAttributeName:font, NSParagraphStyleAttributeName:paragraphStyle.copy}; expectedLabelSize = [text boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:nil].size; return CGSizeMake(ceil(expectedLabelSize.width), ceil(expectedLabelSize.height)); }
以上是关于动态计算文字的高度的主要内容,如果未能解决你的问题,请参考以下文章