写在前面:笔者在iOS软件开发中发现UILabel控件有些问题反复出现,所以在这里做点总结,方便自己查阅,也能给大家提供相关问题的解决方案。
一:当label里的内容显示满了的时候,能够自动将字体变小,使他能够显示全部内容?
解决方法:设置label的如下属性
label.numberOfLines =1;
label.adjustsFontSizeToFitWidth =YES;
二:让label中的字符串显示不同的颜色、大小?
解决方法:如下
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 44)];
label.text = @"50元";
label.font = [UIFont boldSystemFontOfSize:16];
label.textColor = [UIColor whiteColor];
//将label中字显示不同的颜色、以及大小
NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:label.text];
NSRange redRange = NSMakeRange(0, [label.text length]-1);
[noteStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:redRange];//设置redRang范围内字体颜色
[noteStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:60] range:redRange];// 设置redRang范围内字体大小
[label setAttributedText:noteStr] ;
注意:通过对redRange范围的设置,可以让label在不同的位置显示不风格的文字
三:UIlabel 的旋转
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 44)];
self.freeLabel.transform = CGAffineTransformMakeRotation(-M_PI_4);//M_PI_4 表示90度,
//freeLabel的父视图删除边角
self.backview.clipsToBounds = YES;
self.freeLabel.backgroundColor = [UIColor YunWanButtonBackgroundTranslucentRedColor];