我需要通过单元格的 addSubview 方法添加的图像上的单击事件,并在表格视图中设置最喜欢和不喜欢的标志。请注意,我不需要单元格的 didSelectRowAtIndexPath 方法来完成此任务。请参考以下代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
UIImage *myImage = [[UIImage alloc]init];
myImage = [UIImage imageNamed: @"Favourite.png"];
UIImageView *imgName = [[UIImageView alloc]initWithImage:myImage];
imgName.frame = CGRectMake(270, 10, 25, 25);
[cell addSubview:imgName];
cell.textLabel.text = @"Hello";
return cell;
}
我如何在 imgName 上获得点击事件?