对tableViewCells应用检查以隐藏imageView

时间:2014-11-19 10:43:15

标签: objective-c uitableview uiimageview uibutton xcode6.0.1

  

在我的tableView中,我有5 tableView cells。每个都有一个imageView。   在tableView之外,有一个UIButtonUIButton也有图片。   现在,我的问题是检查cells上的图像是否隐藏。   清除问题,我需要检查if的所有单元格   隐藏或不隐藏所有imageView上的cells。我试过这段代码:

 for (int i=0; i<=4; i++) 
    {
     if (cell.unlockImageView.hidden)
     {
        NSLog(@"calling if for hiding image");
      }
    }
  

我不认为我的代码是正确的,但我尝试了一下,但事实并非如此   工作。所以请建议我如何检查所有单元格上的imageView   隐藏与否?

1 个答案:

答案 0 :(得分:0)

请尝试以下代码,希望它能为您提供帮助。

for (customTableViewCell* tblCell in tableView.visibleCells)
    {
        if (tblCell.unlockImageView.hidden)
        {
            NSLog(@"Imageview is hidden");
        }
    }