动态计算文字的高度

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));
}

 

以上是关于动态计算文字的高度的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序:swiper高度动态适配

如何计算动态类型的估计行高度

Android 动态改变高度以及计算长度的EditText

当antd Table Head高度不确定,动态计算满屏时Table scroll y的高度。

asp.net页面实用代码片段

高度和阴影