我在 cuttom 单元格中显示一个按钮UITableview
。不需要时如何隐藏该按钮。例如:我在按钮上显示接收到的图像计数。如果计数为零,我需要从单元格中隐藏该按钮。
contactviewController.m
if (![[arr objectAtIndex:4] isEqualToString:@"0"]) {
[cell1 setImg:[arr objectAtIndex:4]];
}
Customcell.m
-(void)setImg:(NSString *)_text
{
imgView.titleLabel.textColor = [UIColor whiteColor];
[imgView setTitle:_text forState:UIControlStateNormal];
}