グループUITableViewの最初と最後の行の色を変更するには?
私の解決策をあなたと共有したいのですが、方法がわからないので、この質問を作成します。そのために残念。
あなたのUITableViewDataSource
方法tableView:cellForRowAtIndexPath:
では、あなたのセルがセットアップされた後、このようなことをします:
if (indexPath.row == 0 ||
indexPath.row == [tableView numberOfRowsInSection:indexPath.section] - 1) {
cell.backgroundColor = [UIColor redColor]; // or anything you want.
}
- (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;
}