- (CGSize)getframeAndStr:(NSString*)str andwidth:(int)width
{
CGSize lasize = [str sizeWithFont:[UIFont systemFontOfSize:15] constrainedToSize:CGSizeMake(width, 300) lineBreakMode:NSLineBreakByWordWrapping];
return lasize;
}
width: 自己定义需要现实的字符串宽度
300: 自己设定的字符串最大高度
lasize.height 高度
lasize.width 宽度
时间: 2024-10-12 12:31:04