我需要單元格的addSubview方法添加的圖像上的點擊事件,並在表格視圖中設置最喜歡和不喜歡的標誌。請注意,我不需要cell的didSelectRowAtIndexPath方法來實現這個任務。請參閱下面的代碼:需要在iphone的表格視圖中顯示圖像的點擊事件sdk
- (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上的點擊事件?
你可以聲明A按鈕並將圖片設置爲按鈕,然後使用ibaction創建點擊。 –
我想我們正在談論點擊。點擊在UIKit中不存在。 – Joride
感謝XCode Monkey:您的解決方案適用於我:D –