0

如何更改 UITableView 组中第一行和最后一行的颜色?

我想与您分享我的解决方案,但我不知道如何,所以我提出了这个问题。对此感到抱歉。

4

2 回答 2

2

在你的UITableViewDataSource方法tableView:cellForRowAtIndexPath:中做这样的事情,在你的单元格设置好之后:

if (indexPath.row == 0 || 
    indexPath.row == [tableView numberOfRowsInSection:indexPath.section] - 1) {
    cell.backgroundColor = [UIColor redColor]; // or anything you want.
}
于 2012-08-27T15:39:57.953 回答
0
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    [self configureCell:cell atIndexPath:indexPath];


    for (int x = 0; x < [[self.fetchedResultsController sections] count]; x++) {

        id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:x];

        int d = [sectionInfo numberOfObjects];

        if(indexPath.section == x){

            if (indexPath.row == 0 || indexPath.row == d-1) {

                cell.backgroundColor = [UIColor blackColor];

            }else{

                cell.backgroundColor = [UIColor whiteColor];

            }

        }
    }

    return cell;   
}
于 2012-08-27T15:38:20.930 回答