0

我有一个带有 UITextView 的服装 UITableViewCell,但我的 TextView 不会调整大小,如果我向下滚动 UITextView 内容的格式更改!

我的 costum 单元的 .h 文件中有一些对象,但没有别的。

这是我的 cellForRowAtIndexPath:

AACTickerYellowCell * cell;

        NSString *cellIdentifier = @"yellowCell";
        cell = (AACTickerYellowCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

        if(cell == nil) {
            cell = [[AACTickerYellowCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
        }

        cell.backgroundColor = [[UIColor alloc] initWithRed:1 green:1 blue:1 alpha:1];

        cell.minuteLabel.text = [[dict objectAtIndex: [[dataManager getTickerObjects] count] - 1 - indexPath.row] objectForKey:@"Minute"];

        cell.textView.delegate = self;
        cell.textView.text = [[dict objectAtIndex: [[dataManager getTickerObjects] count] - 1 - indexPath.row] objectForKey:@"Text"];
        cell.textView.textAlignment = NSTextAlignmentLeft;
        cell.textView.font = [UIFont fontWithName:@"Helvetica" size:16];

        return cell;

'dict' 在我的-viewDidLoad:.

我的两个问题在哪里,我该如何解决?

4

1 回答 1

0

您是否在 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath UITableView Delegate 中调整了单元格的大小?

于 2013-10-12T22:30:47.210 回答