在我的
tableView
中,我有5tableView
cells
。每个都有一个imageView
。 在tableView
之外,有一个UIButton
。UIButton
也有图片。 现在,我的问题是检查cells
上的图像是否隐藏。 清除问题,我需要检查if的所有单元格 隐藏或不隐藏所有imageView
上的cells
。我试过这段代码:
for (int i=0; i<=4; i++)
{
if (cell.unlockImageView.hidden)
{
NSLog(@"calling if for hiding image");
}
}
我不认为我的代码是正确的,但我尝试了一下,但事实并非如此 工作。所以请建议我如何检查所有单元格上的imageView 隐藏与否?
答案 0 :(得分:0)
请尝试以下代码,希望它能为您提供帮助。
for (customTableViewCell* tblCell in tableView.visibleCells)
{
if (tblCell.unlockImageView.hidden)
{
NSLog(@"Imageview is hidden");
}
}