将TableviewController之间的数据传递给包含TableView的UIViewController,tableview委托使用UIViewcontroller进行设置。关键字的名称是在Viewcontroller中传递的,而不是图像。
答案 0 :(得分:0)
PFImageView *imageView=(PFImageView *)[tableView viewWithTag:1]
假设要做什么?
您出列的单元格不在tableView
,因此如果您想在该单元格中设置图像,则无法获得所需内容。
我猜你想要PFImageView *imageView=(PFImageView *)[cell viewWithTag:1]
。