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 に答える