标签:color os line size on sp ui text
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(13, 10, 380, 30)];
UIFont *font = [UIFont fontWithName:@"Helvetica" size:15.0];
[label setFont:font];
[label setNumberOfLines:0]; //设置为0时才可以label才可以根据字体的个数自动改变高度。
[label setBackgroundColor:[UIColorblueColor]];
NSString *text =@"ffffffffffffffffffffffffffffffffffffffffffffffffffffff";
CGSize size = [text sizeWithFont:font constrainedToSize:CGSizeMake(400.0f, 200.0f) lineBreakMode:UILineBreakModeWordWrap];
//计算字体的size,蓝色的部分是字体可以显示的最大范围,超过这个范围就会变成省略号。
CGRect rect = label.frame;
rect.size = size;
[label setFrame:rect];
[label setText:text];
根据文字的个数,label自动适应高度,布布扣,bubuko.com
标签:color os line size on sp ui text
原文地址:http://www.cnblogs.com/lcblg/p/3919705.html