0

我有一个表格视图,其中包含从 xib 加载的自定义单元格,该单元格有一个按钮,当按下时更改它的图像我的问题是当我在视图之外上下滚动表格时,按钮重新加载它的默认图像

这是我的代码

对于表:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifer=@"LabelCell";
    TestTableCell *cell=[tableView dequeueReusableCellWithIdentifier:CellIdentifer];

   if (cell==nil) 
    {
       cell = [[TestTableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifer];

        NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"TestTableCell" owner:nil options:nil];

        for (UIView *view in views) 
        {
            if([view isKindOfClass:[TestTableCell class]])
            {
                cell = (TestTableCell*)view;
            }
        }

    cell.selectionStyle=UITableViewCellSeparatorStyleNone;
    UIImage *cellbackground=[[UIImage imageNamed:@"cell-background.png"]resizableImageWithCapInsets:UIEdgeInsetsMake(5, 5, 5, 5)];
    cell.backgroundView=[[UIImageView alloc]initWithImage:cellbackground];

   }
    return  cell;
}
4

1 回答 1

1

您需要在数据模型中存储图像是否已被按下。UITableView 将在您滚动时将您的单元格重用于其他行,并且单元格内的所有内容都将被遗忘。

于 2012-09-13T17:15:41.970 回答