の最初のレコードでキャプチャされた画像タップ イベントを探しています。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)
cell.imageAvtar.viewWithTag (101) 同様に.nil
(cell.contentView.viewWithTag(100)