我正在寻找在的第一条记录上捕获的图像点击事件UITableView
,当用户点击我时,cell.imageAvtar
我只想捕获该事件。
这是我正在使用的代码
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("details", forIndexPath: indexPath) as! AccountCell
if (indexPath.row == 0) {
(cell.contentView.viewWithTag(101) as! UIImageView).image = UIImage(named: "no_image_available.jpg")
}
return cell
}
但是(cell.contentView.viewWithTag(101)
正在返回nil
。我也尝试(cell.contentView.viewWithTag(100)
过 (cell.imageAvtar.viewWithTag(101) 。