2

我有一个UITableViewCell带有红色的自定义,UIView当我选择UITableViewCell.

我不希望这种情况发生。有没有办法保持UIView选择的颜色?

仅关于该视图的配置。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *kCellIdentifier = @"Cell Identifier";
    DetailsCell *cell = (DetailsCell *) [tableView dequeueReusableCellWithIdentifier: kCellIdentifier];

    if (cell == nil)
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"DetailsCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
    }
    cell.myView.layer.cornerRadius = 5;
    cell.myView.layer.masksToBounds = YES;
    return cell;
}
4

4 回答 4

1

将标签添加到您的视图。

yourview.tag = 3;

而不是在您的 tableView 的didSelectRowAtIndexPath方法中添加此代码

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    //get the cell which is selected
    UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];

    //set tempView color of selected cell bcoz when cell selected all view color is gone
    UIView *tempView=[selectedCell viewWithTag:3];
//set your color whatever you want
    tempView.backgroundColor = [UIColor colorWithRed:(112/255.0) green:(136/255.0) blue:(213/255.0) alpha:1];
}

更新

您也可以通过将单元格选择颜色选择为 NONE 来执行此操作。把这段代码放进去cellForRowAtIndexPath

cell.selectionStyle = UITableViewCellSelectionStyleNone;
于 2013-07-23T16:03:38.527 回答
1

您还可以使用 UITableViewCell 的 setHighlighted 方法撤消默认行为所做的任何更改。

于 2015-02-12T09:57:07.720 回答
0

您可以使用所需的颜色设置自定义背景视图。您执行此操作的位置会因您配置单元的方式而异。

UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = // Your color (cell.backgroundColor perhaps);
cell.selectedBackgroundView = bgColorView;
于 2013-07-23T16:03:46.040 回答
0

如果您确实想显示选择(使用蓝色)但将视图保留为您提供的颜色,则可以将 selectionStyle 设置为 nil,就像您在答案中所做的那样(或在 IB 中设置),然后执行这在代码中:

在 RDCell.m 中:

@实现 RDCell

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) {
        self.backgroundView = [[UIView alloc] init];
        self.backgroundView.backgroundColor = [UIColor clearColor];
    }
    return self;
}

在表视图控制器中:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    RDCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
    cell.label1.text = self.theData[indexPath.row];
    if ([self.selectedPath isEqual:indexPath]) {
        cell.backgroundView.backgroundColor = [UIColor blueColor];
    }else{
        cell.backgroundView.backgroundColor = [UIColor clearColor];
    }
    return cell;
}


#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    self.selectedPath = indexPath;
    [self.tableView reloadData];
}
于 2013-07-23T16:37:36.557 回答