9

概括

鉴于我们并不总是知道单元格的框架或其内容视图将是什么(由于编辑、旋转、辅助视图等),tableView:heightForRowAtIndexPath:当单元格包含可变高度文本字段或标签?

我的其中一个UITableViewController's包含以下演示文稿:带有 UITextView 的 UITableViewCell。

UITextView 应该和 UITableViewCell 一样宽高。

在此处输入图像描述

我创建了 UITableViewCell 子类,然后用 UITextView 初始化它(UITextView 是我的 UITableViewController 的私有字段)

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ 
     static NSString *CellIdentifier = @"TextViewCell";
     UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
     if (cell == nil) {
         cell = [[[BTExpandableTextViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier textView:_notesTextView] autorelease];
     }    
     return cell;
}

我在 UITableViewCell 子类中实现了以下方法:

- (void)layoutSubviews{
    [super layoutSubviews];
    CGFloat height = [textView.text sizeWithFont:textView.font constrainedToSize:CGSizeMake(textView.frame.size.width, MAXFLOAT)].height + textView.font.lineHeight;
    textView.frame = CGRectMake(0, 0, self.contentView.frame.size.width, (height < textView.font.lineHeight * 4) ? textView.font.lineHeight * 4 : height);    
    [self.contentView addSubview:textView];
}

当然我实现了以下 UITableViewDataSource 方法(看!我正在使用 self.view.frame.size.width (但我真的需要 UITableViewCell contentView 框架宽度):

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

    CGFloat height  = [_notesTextView.text sizeWithFont:_notesTextView.font 
                                      constrainedToSize:CGSizeMake(self.view.frame.size.width, MAXFLOAT)].height;        
    CGFloat groupedCellCap = 20.0;     
    height          += groupedCellCap; 

    if(height < [BTExpandableTextViewCell minimumTextViewHeightWithFont:_notesTextView.font]){
        height = [BTExpandableTextViewCell minimumTextViewHeightWithFont:_notesTextView.font];
    }        
    return height;
}    

我也实现了以下方法(这不是那么重要,但无论如何我都会发布它,只是为了解释单元格的高度是动态的,它会在 UITextView 中更改文本后缩小或扩大)

 - (void)textViewDidChange:(UITextView *)textView{
    CGFloat height = [_notesTextView.text sizeWithFont:_notesTextView.font 
                                 constrainedToSize:CGSizeMake(_notesTextView.frame.size.width, MAXFLOAT)].height;
    if(height > _notesTextView.frame.size.height){
        [self.tableView beginUpdates];
        [self.tableView endUpdates];
    }
}

现在,我的问题是: 加载视图后, UITableViewController 按以下顺序调用方法:(为了简化,我删除了一些,如 titleForHeaderInSection 等)

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{ 

只有这样

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

看!我应该在 cellForRowAtIndexPath 之前返回正确的 UITableViewCell 高度!这意味着:我不知道 UITableViewCell contentView 框架。而且我无法以编程方式获得它。

此宽度可以是以下之一:

  1. iPhone 普通桌子,纵向
  2. iPhone 普通桌子,横向
  3. iPhone 分组表,纵向
  4. iPhone 分组表,横向
  5. 和 iPad 相同(另外 4 个值)

并且不要忘记,因为 UITableViewCell 附件类型,或者因为 UITableView 编辑状态,contentView 框架可以更小。(例如,如果我们有 UITableViewCell 与任何高度的多行 UILabel 在任何编辑状态和任何附件视图)

所以这个问题是根本的:我只是无法获得单元格 contentView 框架宽度进行约束,因为我应该在单元格布局 contentView 之前返回这个高度。(顺便说一句,这很合乎逻辑)但是这个 contentView 框架真的很重要。

当然有时我可以准确地知道这个宽度并“硬编码”它(例如:UITableViewCellAccessoryDisclosureIndicator 有 20 px 宽度,而 tableView 不能处于编辑状态,那么我可以写 self.view.frame.size.width - 20 和任务已经完成了)!或者有时 contentView 等于 UITableViewController 的视图框架!

有时我在 -tableView:heightForRowAtIndexPath: 方法中使用 self.view.frame.width 。(就像现在一样,它工作得很好,但由于分组的 UITableView 并不完美,应该减去一些常量值,它们是不同的2 个设备 * 2 个方向)

有时我在 UITableViewCell 中有一些#defined 常量(如果我确切地知道宽度)......

有时我正在使用一些虚拟的预分配 UITableViewCell (这很愚蠢,但有时非常优雅且易于使用)......

但我不喜欢那种东西。

最好的决定是什么? 也许我应该创建一些辅助类,它将使用以下参数进行初始化:附件视图、设备方向、设备类型、表视图编辑状态、表视图样式(普通、分组)、控制器视图框架和其他一些,这将包括一些常量(如分组的 tableView 偏移量等)并使用它来查找预期的 UITableViewCell contentView 宽度?;)

谢谢

4

2 回答 2

1

表格视图使用该tableView:heightForRowAtIndexPath:方法在创建任何单元格之前确定其 contentSize UITableViewCell。如果你停下来想一想,这是有道理的,因为你对 a 做的第一件事UIScrollView就是设置它的 contentSize。我之前遇到过类似的问题,我发现最好有一个辅助函数,可以将内容放入 UITableViewCell 并预测它的高度UITableViewCell。因此,我认为您将希望创建某种数据结构,将文本存储在 eachUITableViewCell中,以 NSIndexPaths 作为键并将文本作为值的 NSDictionary 会做得很好。这样,您可以找到所需文本的高度,而无需参考UITableViewCell.

于 2012-06-20T09:45:27.630 回答
1

尽管您可以在 UITableViewCell 子类的“layoutSubviews”中真正动态地计算表格视图单元格中包含的标签的高度,但对于“-tableView:heightForRowAtIndexPath:”中的单元格高度没有类似的方法(据我所知)的表视图委托。

考虑一下:

- (void)layoutSubviews
{
    [super layoutSubviews];

    CGSize size = [self.textLabel.text sizeWithFont:self.textLabel.font
                                  constrainedToSize:CGSizeMake(self.textLabel.$width, CGFLOAT_MAX)
                                      lineBreakMode:self.textLabel.lineBreakMode];
    self.textLabel.$height = size.height;
}

不幸的是,当 '-tableView:heightForRowAtIndexPath:' 被调用时,这还为时过早,因为cell.textLabel.frame它尚未设置为CGRectZero = {{0, 0}, {0, 0}}.

AFAIK 你既不能用内容视图的框架来做到这一点,也不能总结单个标签的框架......

我能想到的唯一方法是想出一个便利类、方法、常量等,试图在任何设备上覆盖任何设备方向上的所有可能宽度:

@interface UITableView (Additions)

@property (nonatomic, readonly) CGFloat padding;

@end

@implementation UITableView (Additions)

- (CGFloat)padding
{
    if (self.formStyle == PTFormViewStylePlain) {
        return 0;
    }

    if (self.$width < 20.0) {
        return self.$width - 10.0;
    }

    if (self.$width < 400.0 || [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
        return 10.0;
    }

    return MAX(31.0, MIN(45.0, self.$width * 0.06));
}

@end

另请注意,最近我们也有新的 iPhone 5 的 4 英寸宽度(568 而不是 480)横向。

这整件事很令人不安,我知道……干杯。

于 2012-09-18T07:43:02.373 回答