我有一个表格视图,其中包含从 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;
}