.h中
//******************************************************************************************************************************************************************************
import
+ (CGFloat)getWidthWithTitle:(NSString *)title font:(UIFont *)font;
+ (CGFloat)getHeightByWidth:(CGFloat)width title:(NSString *)title font:(UIFont *)font;
.m 中
//****************************************************************************************************************************************************************************************
#import "UILabel+LabelHeightAndWidth.h"
@implementation UILabel (LabelHeightAndW)
+ (CGFloat)getHeightByWidth:(CGFloat)width title:(NSString *)title font:(UIFont *)font
{
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, width, 0)];
label.text = title;
label.font = font;
label.numberOfLines = 0;
[label sizeToFit];
CGFloat height = label.frame.size.height;
return height;
}
+(CGFloat)getWidthWithTitle:(NSString *)title font:(UIFont *)font {
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 1000, 0)];
label.text = title;
label.font = font;
[label sizeToFit];
return label.frame.size.width;
}
@end
本文介绍了一个简单实用的方法来自动计算 UILabel 的高度和宽度。通过创建 UILabel 的实例并设置其属性,可以准确获取文本在指定字体下的实际显示尺寸。
4761

被折叠的 条评论
为什么被折叠?



