iOS UITableView单元格选择

时间:2012-07-11 15:10:51

标签: ios uitableview

我有一个名为NewCell的自定义单元格的UITableView,我试图在点击事件中显示NewCell中名为“selectedView”的UIView。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NewCell *cell = (NewCell*)[tableView cellForRowAtIndexPath:indexPath];
    [cell.selectedView setHidden:NO];
}

编辑 - 添加单元格创建代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"NewCell";
    NewCell *productCell = (NewCell *)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (productCell == nil) 
    {
        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"NewCell" owner:nil options:nil];

        for (id currentObject in topLevelObjects)
        {
            if([currentObject isKindOfClass:[UITableViewCell class]])
            {
                productCell = (NewCell *) currentObject;
                break;
            }
        }
    }

    Product *mainProduct = [self.productsArray objectAtIndex:indexPath.row];

    float floatPrice = [mainProduct.price floatValue];
    NSString *priceFormat;
    if ((int)floatPrice == floatPrice) priceFormat = @"$%.0f"; else priceFormat = @"$%.2f";

    produtCell.productPrice.text = [NSString stringWithFormat:priceFormat, floatPrice];

    return productCell;
}

一切正常并且表填充,但是当我选择一个单元格时,它不会在表格中选择的单元格上显示selectedView,而是在相对的单元格中显示selectedView。 我的意思是,如果屏幕上显示第0行和第1行,我选择第1行,它将在第0行显示selectedView,如果我选择第0行,它将在第1行显示selectedView。

很奇怪,我似乎无法说出它为什么会这样做。

我一定是做错了。

1 个答案:

答案 0 :(得分:5)

这样做的原因是你需要将你的选择风格设置为无:

productCell.selectionStyle = UITableViewCellSelectionStyleNone;