1

我正在尝试在UITableViewiPhone 中实现此功能:始终只有 FIRST 和 LAST VISIBLE 单元格具有不同的背景颜色,例如红色,而其他单元格的颜色保持白色。滚动过程中的平滑变化。
我试过了:

.m文件中:

NSIndexPath *firstRow;
UITableViewCell* firstCell;

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"tableCell";    
    tableCell *cell = (tableCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) 
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"tableCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
    } 

    cell.nameLabel.text = [tableData objectAtIndex:indexPath.row];
    //cell.thumbnailImageView.image = image;

    return cell;
}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
{
    NSArray *visible = [tableView indexPathsForVisibleRows];
    firstRow = (NSIndexPath *)[visible objectAtIndex:0];
    firstCell = [tableView cellForRowAtIndexPath:firstRow];
    firstCell.contentView.backgroundColor=[UIColor redColor];
    NSLog(@"main visible cell's row: %i", firstRow.row);
    [tableView endUpdates];
    firstCell.contentView.backgroundColor=[UIColor redColor];   
}

但是向上滚动时颜色不会更新。

4

2 回答 2

6

如果需要,您可以在 cellForRowAtIndexPath 中完成所有操作。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *tableViewCellID = @"cellID";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:tableViewCellID];
    if (!cell) 
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tableViewCellID];

    [[cell textLabel] setText:[NSString stringWithFormat:@"some sting %i", [indexPath row]]];


    NSArray *visibleCells = [tableView visibleCells];

    for (int i = 0; i < [visibleCells count]; i++) {
        UITableViewCell *cell = [visibleCells objectAtIndex:i];
        if (i == 0 || i == [visibleCells count] - 1)
            [cell setBackgroundColor:[UIColor redColor]];
        else 
            [cell setBackgroundColor:[UIColor clearColor]];
    }

    return cell;
}
于 2012-07-26T17:45:01.973 回答
-1

在你的

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

尝试这样的事情

//Find the first row
if(indexPath.row == 0){
    cell.contentView.backgroundColor = [UIColor redColor];
}

并检查最后一行,你应该重用你为

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
于 2012-07-26T17:23:24.653 回答