iOS 字符串的宽度和高度自适应

Posted 慢慢儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 字符串的宽度和高度自适应相关的知识,希望对你有一定的参考价值。

//获取字符串的宽度
-(float)widthForString:(NSString *)value fontSize:(float)fontSize andHeight:(float)height
{
    UIColor  *backgroundColor=[UIColor blackColor];
    UIFont *font=[UIFont boldSystemFontOfSize:fontSize];
    CGRect sizeToFit = [value boundingRectWithSize:CGSizeMake(CGFLOAT_MAX, height) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{
                                                                                                                                             NSForegroundColorAttributeName:backgroundColor,
                                                                                                                                             NSFontAttributeName:font
                                                                                                                                             } context:nil];
    
    return sizeToFit.size.width;
}
//获得字符串的高度
-(float) heightForString:(NSString *)value fontSize:(float)fontSize andWidth:(float)width
{
    UIColor  *backgroundColor=[UIColor blackColor];
    UIFont *font=[UIFont boldSystemFontOfSize:18.0];
    CGRect sizeToFit = [value boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{
                                       NSForegroundColorAttributeName:backgroundColor,
                                       NSFontAttributeName:font
                                       } context:nil];
    return sizeToFit.size.height;
}

 

以上是关于iOS 字符串的宽度和高度自适应的主要内容,如果未能解决你的问题,请参考以下文章

iOS UILable 高度自适应

前端页面高度和宽度自适应怎么做?

iOS 根据给定宽度自适应文字大小

vue iframe嵌套页面高度自适应 (ios 宽度扩大的bug , ios展示比例问题)

iframe自适应高度设置(iframe自适应高度和宽度)

iOS UILabel讲解以及根据字符串长度自动适应宽度和高度