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

第一贱-UILabel

时间:2014-10-30 18:57:52      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:高度自适应   style   blog   http   io   color   ar   sp   on   

   UILabel *label = [[UILabel alloc]init];

    label.frame = CGRectMake(100, 100, 100, 100);

    label.text = @"我是label---redStar";//设置内容

    label.backgroundColor = [UIColor blackColor];//设置背景颜色

    label.font = [UIFont systemFontOfSize:19];//设置字体大小

    label.textAlignment = NSTextAlignmentLeft;//设置对其方式

    label.textColor = [UIColor whiteColor];//设置字体颜色

    label.lineBreakMode = NSLineBreakByWordWrapping; // 当文字超出label显示区域时的截取方式

    [self.view addSubview:label];

    

    /*内容高度自适应*/    效果图:bubuko.com,布布扣

    label.numberOfLines = 0;//设置行数,设置为0代表无限行

    // MAXFLOAT 为可设置的最大高度

    CGSize size = CGSizeMake(100, MAXFLOAT);

    //获取当前那本属性

    NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:label.font,NSFontAttributeName, nil];

    CGSize actualSize = [label.text boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:nil].size;

    label.frame = CGRectMake(100, 100, 100, actualSize.height);

第一贱-UILabel

标签:高度自适应   style   blog   http   io   color   ar   sp   on   

原文地址:http://www.cnblogs.com/jiackyan/p/4063235.html

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