首页 > 移动平台 > 详细

ios 动态设置Cell的高度

时间:2015-03-31 16:02:52      阅读:166      评论:0      收藏:0      [点我收藏+]

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

       self.mainTitle=[[UILabel alloc]init];
            self.mainTitle.numberOfLines=0;
            self.mainTitle.font=[UIFont fontWithName:@"Hiragino Sans GB" size:14];
            self.mainTitle.text=cell_info.title;
            self.mainTitle.textColor=[UIColor grayColor];
            CGSize titleSize=[self.mainTitle.text boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width-20, 0) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName: self.mainTitle.font} context:nil].size;
            self.rowHeight=titleSize.height;
            self.mainTitle.frame=CGRectMake(15, 3, titleSize.width,titleSize.height);
            [cell.contentView addSubview:self.mainTitle];

       CGRect cellFrame=[cell frame];
        cellFrame.origin=CGPointMake(0,0);
        cellFrame.size.height=self.mainTitle.frame.size.height+5+self.imgOne.frame.size.height+5;
        [cell setFrame:cellFrame];

       return cell;

}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    if (indexPath.section==0) {
        return 160;
    }
    else{
//        if (indexPath.row==0) {
//            UITableViewCell *cell=[self tableView:self.tableView cellForRowAtIndexPath:indexPath];
//            return cell.frame.size.height;
//        }
        UITableViewCell *cell=[self tableView:self.tableView cellForRowAtIndexPath:indexPath];
        return cell.frame.size.height;
    }
}

ios 动态设置Cell的高度

原文:http://blog.csdn.net/darongzi1314/article/details/44780199

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!