我在编辑模式下显示我的表格视图。因此,对于表视图左侧的所有行,都有删除按钮,通过单击它可以更改其图像并在右侧显示“删除”按钮。我想在左侧提供按钮的点击事件。请帮忙。
答案 0 :(得分:0)
如果您使用自定义按钮作为子视图,那么您可以像这样添加目标到按钮:
[button addTarget:self action:@selector(yourMethod) forControlEvents:UIControlEventTouchUpInside];
请具体或显示一些截图。所以我可以弄清楚。
答案 1 :(得分:0)
如果不继承UITableViewCell
,就无法实现这一目标。请查看this answer。