码迷,mamicode.com
首页 > 其他好文 > 详细

UILabel 常见问题总结

时间:2015-04-02 20:42:25      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

写在前面:笔者在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];

 

UILabel 常见问题总结

标签:

原文地址:http://www.cnblogs.com/FightingLuoYin/p/4387742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!