隐藏取消隐藏UITableViewCell背景

时间:2014-01-07 09:23:09

标签: ios iphone uitableview uiimage

我有UITableView我希望在viewDidLoad方法中的第一个单元格上添加背景图像,在第一个单元格上添加图像后,当用户选择我要隐藏背景图像的任何其他行时。

有可能吗?

请提前帮助和致谢。

编辑:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath*)indexPath{
    if(indexPath.row==0){
        cell.backgroundView = [ [UIImageView alloc] initWithImage:[[UIImage imageNamed:@"active-tab.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ];
                flag=true;
         NSLog(@"willDisplayCell");
    }
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
   if (flag==true) {
       cell.backgroundView = nil; //How to get `cell` here ?
       //How to remove BGImage from first cell ???
    }
}

2 个答案:

答案 0 :(得分:1)

看看这个问题,第二个答案给出了很好的描述。

简而言之,您不应该使用viewDiLoad回调,而应使用

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { ... }

从这里您可以根据需要自定义每个单元格的背景,只需在用户点击时重新加载该行。

How to customize the background color of a UITableViewCell?

修改

现在,因为您添加了代码,我可以清楚地看到问题:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"BTSTicketsCellIdentifier";
    CRHomeCategCell *cell = (CRHomeCategCell *)[_tblCateg dequeueReusableCellWithIdentifier:CellIdentifier];
    cell.backgroundView = nil;

}

这不符合你的想法。 dequeueReusableCellWithIdentifier:CellIdentifier为您提供基于标识符标识的单元格的新实例。

您在这里没有获得对该行的引用,您正在创建一个新行并将其背景设置为nil。

你的代码应该是这样的:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath*)indexPath{
    if(indexPath.row==0){
        if(cell.backgroundView == nil)
        {
            cell.backgroundView = [ [UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"active-tab.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ];
            NSLog(@"willDisplayCell");
        }
        else
        {
            cell.backgroundView = nil;
            NSLog(@"willHideCell");
        }

    }
}

这不是一个很好的解决方案,我个人会更喜欢让这个自定义单元格保持一个布尔值并切换其状态并检查它。但这取决于你的发展,这是它应该如何运作的一般概念。

编辑2:

由于您决定在didSelectRowAtIndexPath内运行它,并且完全无法进行任何级别的研究或为您的工作付出任何努力,我可以建议使用该方法:

tableView cellForRowAtIndexPath:<#(NSIndexPath *)#>

答案 1 :(得分:0)

它可以在您的类中添加表视图委托

    - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath
     *)indexPath  
    {  

     if((indexPath.row)==0)  {
      cell.backgroundView = [ [UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"normal.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ]; 
    }

    }


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

yourcustomcell *cell = [tableView cellForRowAtIndexPath:indexPath];
          cell.backgroundView = [ [UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"pressed.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ]; 

or

      cell.backgroundView = nil; 

[tableview reloadData];

    }