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 字符串的宽度和高度自适应的主要内容,如果未能解决你的问题,请参考以下文章