使附件指示器可单击

时间:2013-07-28 21:51:50

标签: ios uitableview accessory

我正在使用下面的代码在我的uitableview中显示自定义配件视图。是否可以将附件图像定位为可点击?我需要做一个动作吗?我需要只在didSelectRowAtIndexPath内点击图片我正在为另一个函数生成警报。

cell.accessoryView = [[ UIImageView alloc ]
                          initWithImage:[UIImage imageNamed:@"acc_icon.png"]];

1 个答案:

答案 0 :(得分:0)

您可以将附件视图设为按钮或保留图像视图并添加手势识别器(确保启用用户交互)。


而不是

[[UIImageView alloc] initWithImage...

使用

[UIButton buttonWithType...

配置按钮目标,动作,图像/文本。