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

ios UIView sizeToFit sizeThatFits

时间:2014-09-19 17:06:05      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:blog   color   io   os   div   sp   log   on   c   

  UILabel *testLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 50, 0, 0)];
    testLabel.backgroundColor = [UIColor whiteColor];
    testLabel.text = @"我们都有一个家啊,名字叫中国,家里攀着两条龙";
    testLabel.font = [UIFont systemFontOfSize:20];
    testLabel.textColor = [UIColor blackColor];

    [testLabel sizeThatFits:CGSizeMake(20, 20)];//会计算出最优的 size 但是不会改变 自己的 size,个人认为这个就是 label 自适应大小有用别的没什么用
    NSLog(@"testLabel sizeThatFits frame = %@", NSStringFromCGRect(testLabel.frame));
    NSLog(@"best size = %@",NSStringFromCGSize([testLabel sizeThatFits:CGSizeMake(20, 20)]));
    [testLabel sizeToFit];//会计算出最优的 size 而且会改变自己的size
    NSLog(@"testLabel sizeToFit frame = %@",NSStringFromCGRect(testLabel.frame));
[self.view addSubview:testLabel];

 

 

ios UIView sizeToFit sizeThatFits

标签:blog   color   io   os   div   sp   log   on   c   

原文地址:http://www.cnblogs.com/shidaying/p/3981501.html

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