0

我需要根据标签的内容和方向支持创建一个单元格高度,目前已经尝试过这个并且在纵向上工作得很好,但在横向上却不行,所以需要适用于两者的解决方案,所以如果有人可以请帮助我。

提前感谢您的努力。

这是我在 tableview 中的代码

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSArray *arr = [arrData objectAtIndex:tableView.tag];    
    NSString *text = [arr objectAtIndex:indexPath.row];    
    CGSize constraint = CGSizeMake(contentWidth - (CELL_CONTENT_MARGIN * 2), 20000.0f);    
    CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:20] constrainedToSize:constraint lineBreakMode:NSLineBreakByWordWrapping];    
    CGFloat height = MAX(size.height, 44.0f);    
    return height + (CELL_CONTENT_MARGIN * 2);
}

// 自定义表格视图单元格的外观。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell;
    UILabel *label = nil;

    cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
        cell.accessoryView = nil;
        cell.selectionStyle = UITableViewCellSelectionStyleNone;

        label = [[UILabel alloc] initWithFrame:CGRectZero];
        [label setLineBreakMode:NSLineBreakByWordWrapping];
        [label setNumberOfLines:0];
        [label setFont:[UIFont systemFontOfSize:20]];
        [label setTag:1];
        [label setBackgroundColor:[UIColor redColor]];                
        [[cell contentView] addSubview:label];
    }

    NSArray *arr = [arrData objectAtIndex:tableView.tag];
    NSString *text = [arr objectAtIndex:indexPath.row];

    CGSize constraint = CGSizeMake(contentWidth - (CELL_CONTENT_MARGIN * 2), 20000.0f);

    CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:20] constrainedToSize:constraint lineBreakMode:NSLineBreakByWordWrapping];

    if (!label)
        label = (UILabel*)[cell viewWithTag:1];

    [label setText:text];
    [label setFrame:CGRectMake(CELL_CONTENT_MARGIN, CELL_CONTENT_MARGIN, contentWidth - (CELL_CONTENT_MARGIN * 2), MAX(size.height, 44.0f))];

    return cell;
}
4

1 回答 1

0

heightForRowAtIndexPath您可以根据方向设置高度。当方向改变时,重新加载单元格。在heightForRowAtIndexPath使用这个值来检查方向,而这个方法被称为-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration重新加载你的单元格。

所以你heightForRowAtIndexPath会是这样的

 if(UIInterfaceOrientationIsPortrait(orientation)){
 }
 else
 {
 }

确保将单元格子视图保持为灵活的自动调整大小。

于 2013-10-08T05:27:38.077 回答