在uitableviewcellstyledefault中调整标题大小

时间:2012-04-20 08:13:47

标签: iphone objective-c ios uitableview

我一直在尝试一段时间,似乎无法找到解决方案。我在我的tableview中使用UITableViewCellStyleDefault cellstyle,并且在文本太长时我试图让字体调整大小。

细胞创建

static NSString *CellIdentifier = @"thisMonthCell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
    cell.selectionStyle = UITableViewCellSelectionStyleGray;

    [cell.textLabel setTextColor:[UIColor darkGrayColor]];
    [cell.textLabel setAdjustsFontSizeToFitWidth:YES];
    [cell.textLabel setMinimumFontSize:14];

    UILabel *valueLabel = [[UILabel alloc]initWithFrame:CGRectMake(190, 10, 100, 20)];
    [valueLabel setBackgroundColor:[UIColor clearColor]];
    valueLabel.tag = 1001;
    [valueLabel setTextAlignment:UITextAlignmentRight];
    [cell addSubview:valueLabel];

}

Expense *expense = [[self.dataHandler monthExpenses]objectAtIndex:indexPath.row];

UILabel *value = (UILabel*)[cell viewWithTag:1001];
[cell.textLabel setText:[expense name]];

if ([[expense value]doubleValue] > 0) {
    [value setText:[NSString stringWithFormat:@"+%.2f",[[expense value]doubleValue]]];
    [value setTextColor:[self greenColor]];    

}
else{
    [value setText:[NSString stringWithFormat:@"%.2f",[[expense value]doubleValue]]];
    [value setTextColor:[self redColor]];    
}
return cell;

但是如果文字太长,textLabel不会重新调整大小。

这是一个展示问题的屏幕截图:

autosize fail

任何想法?

更新我设法通过删除standardLabel并添加自定义的目标来实现我的目标,奇怪的是它不适用于标准的。

2 个答案:

答案 0 :(得分:2)

试试这个cell.textLabel.numberOfLines = 0; cell.textLabel.lineBreakMode = UILineBreakModeWordWrap

答案 1 :(得分:0)

在创建值标签时也使用以下两行代码。

valueLabel.lineBreakMode = UILineBreakModeWordWrap;
valueLabel.numberOfLines = 0;

EDITED- 要更改单元格的高度 -

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *cellText = @"oooooooooooooooooooo"; //Text that you are using
    UIFont *cellFont = [UIFont fontWithName:@"Helvetica" size:16.0]; //Whatever font you are using.
    CGSize constraintSize = CGSizeMake(280.0f, MAXFLOAT);
    CGSize labelSize = [cellText sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];

    return labelSize.height + 25.0; //25.0 is offset, you can change as per need

}