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

UILabel根据内容自动调整高度

时间:2014-12-02 13:23:36      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   for   

效果图:

bubuko.com,布布扣

代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //根据内容自动调整高度
    NSString *str = @"公元前3000年,印度河流域的居民的数字使用就已经比较普遍,居民们采用了十进位制的计算法。";
    UIFont *font = [UIFont systemFontOfSize:13];
    CGSize size = CGSizeMake(200,2000);
    CGRect labelRect = [str boundingRectWithSize:size options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading)  attributes:[NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName] context:nil];
    
    //UILabel
    UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(50,100, labelRect.size.width, labelRect.size.height)];
    label.text = str;
    label.backgroundColor=[UIColor redColor];
    label.font = [UIFont systemFontOfSize:13];
    label.numberOfLines=0;
    [self.view addSubview: label];
}

 

UILabel根据内容自动调整高度

标签:style   blog   http   io   ar   color   使用   sp   for   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4137053.html

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