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

ios开发之根据内容行数调整cell 高度,与label高度

时间:2014-08-05 13:25:09      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   io   for   ar   cti   line   

设置cell高度

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

{

     NoticeMessage* msg = [arrayNoticeMessage objectAtIndex:indexPath.section];//取出对应的section或者cell

    UIFont *msgFont = [UIFont fontWithName:@"arial" size:15];//设置字体与字号

    //定义行高

    uint textLineheight = [@"The brown fox jumps over the lazy dog" sizeWithFont:msgFont constrainedToSize:CGSizeMake(MAXFLOAT, MAXFLOAT)].height;

    //设置内容高度

    CGSize infoSize = [msg.strContent sizeWithFont:msgFont constrainedToSize:CGSizeMake(170, MAXFLOAT) lineBreakMode:UILineBreakModeWordWrap];

    return  infoSize.height;

 

设置label高度,在下面方法中

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

{

    static NSString *DetailCellIdentifier = @"ValueDetailCell";

    

    static NSString *SimpleCellIdentifier = @"ValueDetailSimpleCell";

    

    NSLog(@"section %d",indexPath.section);

    //带图的信息

    NoticeMessage* msg = [arrayNoticeMessage objectAtIndex:indexPath.section];

 

        DetailInfoTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:DetailCellIdentifier];

        

        if (cell == nil) {

            cell = [[DetailInfoTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:DetailCellIdentifier];

        }

        cell.contentView.layer.cornerRadius = 3;

        cell.contentView.layer.masksToBounds = YES;

        cell.contentView.layer.bounds = CGRectMake(0, 0, cell.contentView.frame.size.width, cell.contentView.frame.size.height-50);

        cell.contentView.backgroundColor = [UIColor colorWithWhite:0.8 alpha:0.3];

        

        cell.InfoDate.text = msg.strDate;

        cell.InfoTitle.text = msg.strTitle;

        cell.InfoContent.text = msg.strContent;

        //cell.InfoDate.text = msg.strTimeStamp;

        cell.backgroundColor = [UIColor clearColor];

    

    //设置label的高度;

        UIFont *msgFont = [UIFont fontWithName:@"arial" size:15];

        CGSize infoSize = [msg.strContent sizeWithFont:msgFont constrainedToSize:CGSizeMake(170, MAXFLOAT) lineBreakMode:UILineBreakModeWordWrap];

        CGRect frame = cell.InfoContent.frame;

        frame.size.height = infoSize.height;

        [cell.InfoContent setFrame:frame];

    

        return cell;

}

 

ios开发之根据内容行数调整cell 高度,与label高度,布布扣,bubuko.com

ios开发之根据内容行数调整cell 高度,与label高度

标签:style   color   os   io   for   ar   cti   line   

原文地址:http://www.cnblogs.com/tuhaoYY/p/3891750.html

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