根据字体多少使UILabel自动调节尺寸

原文:http://blog.csdn.net/enuola/article/details/8559588app

 

在大多属性状况下,给UILabel进行动态数据绑定的时候,每每须要根据字符串的多少,动态调整UILabel的宽度或高度。oop

下面分两种状况考虑:测试

一、UILabel宽度不变,根据字体多少,自动调整UILabel的高度,并折行显示。字体

代码以下:spa

 

[cpp]  view plain copy
  1. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 10, 200, 20)];  
  2. label.font = [UIFont boldSystemFontOfSize:20.0f];  //UILabel的字体大小  
  3. label.numberOfLines = 0;  //必须定义这个属性,不然UILabel不会换行  
  4. label.textColor = [UIColor whiteColor];   
  5. label.textAlignment = NSTextAlignmentLeft;  //文本对齐方式  
  6. [label setBackgroundColor:[UIColor redColor]];  
  7.   
  8. //宽度不变,根据字的多少计算label的高度  
  9. NSString *str = @"能够更改此内容进行测试,宽度不变,高度根据内容自动调节";  
  10. CGSize size = [str sizeWithFont:label.font constrainedToSize:CGSizeMake(label.frame.size.width, MAXFLOAT) lineBreakMode:NSLineBreakByWordWrapping];  
  11. //根据计算结果从新设置UILabel的尺寸  
  12. [label setFrame:CGRectMake(0, 10, 200, size.height)];  
  13. label.text = str;  
  14.   
  15. [self.view addSubview:label];  
  16. [label release];  

二、UILabel高度不变,根据字体多少,自动调整UILabel的宽度,并折行显示

 

代码以下:.net

 

[cpp]  view plain copy
  1. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 10, 20, 20)];  
  2. label.font = [UIFont boldSystemFontOfSize:20.0f];  //UILabel的字体大小  
  3. label.numberOfLines = 0;  //必须定义这个属性,不然UILabel不会换行  
  4. label.textColor = [UIColor whiteColor];   
  5. label.textAlignment = NSTextAlignmentLeft;  //文本对齐方式  
  6. [label setBackgroundColor:[UIColor redColor]];  
  7.   
  8. //高度固定不折行,根据字的多少计算label的宽度  
  9. NSString *str = @"高度不变获取宽度,获取字符串不折行单行显示时所须要的长度";  
  10. CGSize size = [str sizeWithFont:label.font constrainedToSize:CGSizeMake(MAXFLOAT, label.frame.size.height)];  
  11. NSLog(@"size.width=%f, size.height=%f", size.width, size.height);  
  12. //根据计算结果从新设置UILabel的尺寸  
  13. [label setFrame:CGRectMake(0, 10, size.width, 20)];  
  14. label.text = str;  
  15.   
  16. [self.view addSubview:label];  
  17. [label release];  

其中两种状况,核心代码均为size处的代码,均要把对应的size设置为MAXFLOAT

 

更多 1
相关文章
相关标签/搜索