UITableViewController - 单元格大小分隔符和backgroundcolor

时间:2015-04-13 05:49:06

标签: ios objective-c uitableview

我正在尝试实现airbnb寻找我的UITableViewController。

  1. 分隔符不在屏幕的整个宽度中
  2. 每个单元格具有独特的大小和背景颜色
  3. 我设法使用静态表来处理#2并在IB中设置每个单元格大小但是存在以下问题:

    1. 在IB中设置背景颜色没有(改变背景颜色和色调)
    2. 我希望以编程方式“删除”一个单元格,如果它没有内容,但唯一的函数返回单元格高度- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 对于所有单元格是通用的,并且被称为先前以使用数据填充单元格,因此在此方法中我无法确定是否应删除该单元格。

2 个答案:

答案 0 :(得分:0)

我认为您应该使用表视图的委托方法willDisplayCell: forRowAtIndexPath:。在单元格准备好在表格视图上显示之前调用此委托方法。在此委托中,您将创建单元格,如果您需要在此处进行一些修改,这些修改将在单元格显示之前反映出来。

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    [cell setBackgroundColor:[UIColor redColor]];
    // and all other cell customizations 
}

答案 1 :(得分:0)

  1. 您可以在布局子视图之前设置表视图的separatorInset和layoutMargins属性,并在显示单元格之前设置单元格的separatorInset和layoutMargins属性。

  2. 要设置自定义单元格的高度,您可以通过调用表视图数据源方法而不是调用cellForRowAtIndexPath:表视图方法来获取所需的单元格。

  3. 示例:

    // 1. Make full width separators:
    - (void)viewWillLayoutSubviews {
        if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
            [self.tableView setSeparatorInset:UIEdgeInsetsZero];
        }
        if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
            [self.tableView setLayoutMargins:UIEdgeInsetsZero];
        }
    }
    
    #pragma mark - Table view delegate
    
    - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
        if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
            [cell setSeparatorInset:UIEdgeInsetsZero];
        }
    
        if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
            [cell setLayoutMargins:UIEdgeInsetsZero];
        }
    }
    
    #pragma mark - Table view data source
    // 2.Customize cells background color and height
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        NSString *cellIdentifier = [NSString stringWithFormat:@"s%ld-r%ld", indexPath.section, indexPath.row];
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    
        if (!cell) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellIdentifier];
        }
    
        if (indexPath.row % 2) {
            cell.backgroundColor = [UIColor redColor];
            cell.contentView.backgroundColor = [UIColor whiteColor];
            cell.textLabel.text = cellIdentifier;
        } else {
            cell.backgroundColor = [UIColor cyanColor];
            cell.contentView.backgroundColor = [UIColor whiteColor];//background color of contentView overlaps cell's background color
        }
    
        return cell;
    }
    
    
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    
        UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath]; //getting cell at indexPath
        if ([self isCellEmpty:cell]) {
            return 22;
        }
        return 44;
    }
    
    - (BOOL)isCellEmpty:(UITableViewCell *)cell {
        return !cell.textLabel.text.length; //Place your code for checking cell's content
    }
    

    enter image description here