码迷,mamicode.com
首页 > 移动开发 > 详细

ios   UILabel

时间:2015-03-18 18:32:42      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:标签

  
//    UILabel,标签视图,主要用于显示文字
    //UILabel继承于UIView
    
    //1.创建(开辟内存初始化)
    UILabel *userlabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, 100, 50)];
    //2.设置属性
    userlabel.backgroundColor = [UIColor redColor];
    //设置文本
    userlabel.text = @"登陆";//也可以用set方法[userlabel setText:<#(NSString *)#>]
    //设置字体样式
    //系统字体
    //userlabel.font = [UIFont systemFontOfSize:40];
    //系统字体加粗
    userlabel.font = [UIFont boldSystemFontOfSize:40];//
    //自定义文字样式
    //userlabel.font =[UIFont fontWithName:@"" size:60];
    //设置文本颜色
    userlabel.textColor = [UIColor whiteColor];
    //设置行数,默认是1, o代表无限行
    userlabel.numberOfLines = 0;
    //设置文字对齐方式
    userlabel.textAlignment = NSTextAlignmentCenter;
    //设置文字阴影
//    userlabel.shadowColor = [UIColor grayColor];
//    //设置阴影的偏移,宽度影响左右,高度影响上下
//    userlabel.shadowOffset = CGSizeMake(10, 10);
   //文本大小适应lable宽度
    userlabel.adjustsFontSizeToFitWidth = YES;
    //字体大小, 缩放比率
    userlabel.minimumScaleFactor = 0.5;
    

ios   UILabel

标签:标签

原文地址:http://7423915.blog.51cto.com/7413915/1621770

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