目前我在 iPhone 应用程序中工作,使用 tableview 开发表格及其样式,如分组,No.of 部分如 2,然后第 1 部分具有分隔颜色,如浅灰色,第 2 部分具有分隔颜色,如 clearColor。但是当我滚动表格视图时,有时第二部分在第一部分处于活动状态时也会清除分隔符颜色,如何解决这个问题?请任何人帮助我
提前致谢
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if (indexPath.section == 0 && indexPath.row == 0)
{
studentUpdateTable.separatorColor = [UIColor lightGrayColor];
cell.backgroundColor = [UIColor whiteColor];
}
else if(indexPath.section == 1 && indexPath.row == 0)
{
studentUpdateTable.separatorColor = [UIColor clearColor];
cell.backgroundColor = [UIColor clearColor];
}
}