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

cell动态高度

时间:2014-12-03 12:13:45      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   for   strong   on   bs   代码   ef   

1. 在自定义cell的layoutsubview方法里:

// 动态设置cell的高度

    // 1. 核心代码

    CGSize constraint = CGSizeMake(kWidth, 20000.0f);

    NSAttributedString *attributedText = [[NSAttributedStringalloc]initWithString:_label.textattributes:@{

                                                                                                                   NSFontAttributeName:[UIFontsystemFontOfSize:kFont]

                                                                                                                   }];

    CGRect rect = [attributedText boundingRectWithSize:constraint

                                               options:NSStringDrawingUsesLineFragmentOrigin

                                               context:nil];

    CGSize size = rect.size;

    

    // 2. 设置frame

    _label.frame = CGRectMake(10, 10, kWidth, size.height);

 

 

 

 

 

 

2.在控制器的

#pragma mark - UITableViewDelegate

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

    Model *model = _models[indexPath.row];

    NSString *text = model.text;

    

    

    // 动态设置cell的高度

    // 1. 核心代码

    CGSize constraint = CGSizeMake(kWidth, 20000.0f);

    NSAttributedString *attributedText = [[NSAttributedStringalloc]initWithString:text attributes:@{

                                                                                                        NSFontAttributeName:[UIFontsystemFontOfSize:kFont]

                                                                                                        }];

    CGRect rect = [attributedText boundingRectWithSize:constraint

                                               options:NSStringDrawingUsesLineFragmentOrigin

                                               context:nil];

    CGSize size = rect.size;

    

    // 2. 设置高度

    return size.height + 20;

}

cell动态高度

标签:io   ar   sp   for   strong   on   bs   代码   ef   

原文地址:http://www.cnblogs.com/liman1990/p/4139585.html

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