UILable的一些很有用的功能

##   //设置拐角
  flyLabel.layer.borderWidth = 5.0;
  
  
      //设置边框的颜色。
  
    flyLabel.layer.borderColor = [[UIColor orangeColor]CGColor];
        //设置圆角
    label.layer.cornerRadius = 5;
    
    
    
    
    【iOS开发】怎样让label变成圆角的
## //设置边缘弯曲角度
label.layer.cornerRadius = 5;
label.clipsToBounds = YES;(iOS7以后需要设置)


 flyLabel.layer.borderWidth = 5.0;








## frame与bouces的区别


回复:rediceframe是基于父view坐标系的,bounds是基于自身坐标系的,如果仅仅需要size属性,bounds是足够的,frame当然也能做到。




## sizeTofilt  文字大小自适应
//文字大小自适应 一定要加上要不然显示不出来红色指示条我也不知道为什么,可能第一次文字挡住了指示条吧,只能是这样解释了
    [btn.titleLabel sizeToFit];

你可能感兴趣的:(UILable的一些很有用的功能)