我正在使用NYXProgressiveImageView()逐步将图像加载到单元格中-(UITableViewCell *)tableView:(UITableViewdequeueReusableCellWithIdentifier:@"Customcell"];
// Load the top-level objects from the customloadNibNa
当我按下UItableViewCell中的一个按钮时,目标动作就会被触发,在那里,我需要在同一单元格内的另一个按钮中显示一个图像。我的代码在下面,但由于我的自定义UITableViewCell类,它给了我一个错误。有办法绕道吗?错误是:
incompatible pointer types, initializing CUSTOM_CELL with an expression of type UITableViewCell。我的CUSTOM_CELL是:UItableViewC
我已经成功地实现了UITableViewCell的子类化,并且我正在使用子类在我的应用程序中布局一些TableViewCell。现在,我正在尝试懒惰地将图像加载到细胞中。根据日志,图像下载工作正常,但当涉及到更新图像时,什么也没有发生!我一直在尝试:
// My custom class has a specific property for each subview in this cell.