NSString *timestamp;
[timestamp drawInRect:CGRectMake(0, status.textBounds.size.height +3, 250, 16) withFont:[UIFont systemFontOfSize:12]];
NSString *text=[textArrayobjectAtIndex:indexPath.row];
CGSizeconstraint = CGSizeMake(cell的宽 - 离俩遍的距离,限制文本高);
这个是设置的字符串size的限制,可以限制字符串的宽和高;
CGSize size =
[text sizeWithFont:[UIFontsystemFontOfSize:FONT_SIZE]
constrainedToSize:constraint
lineBreakMode:UILineBreakModeWordWrap];
这个是得到字符串text的实际size 用她可以来设置lable的框架大小。
[timestamp drawInRect:CGRectMake(0, status.textBounds.size.height +3, 250, 16) withFont:[UIFont systemFontOfSize:12]];
NSString *text=[textArrayobjectAtIndex:indexPath.row];
这个是设置的字符串size的限制,可以限制字符串的宽和高;
[text sizeWithFont:[UIFontsystemFontOfSize:FONT_SIZE]
这个是得到字符串text的实际size