作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 UITableview,使用 IB 我在自定义单元格和一些标签中定义了一个 UIButton,自定义单元格子类已经定义了按钮的 IBAction 和必要的 IBOutlets,但我想处理按钮点击事件tableview Controller 它自己但不在自定义单元格子类中。
我该怎么做?我还需要获取确切点击了哪一行的按钮,以便显示与其相关的内容。
最佳答案
我通过将其添加到我的 Controller 中解决了问题;
[cell.expButton setTag:indexPath.row];
UIButton *button = (UIButton *)[cell expButton];
[button addTarget:self action:@selector(buttonTapped:event:) forControlEvents:UIControlEventTouchUpInside];
关于iPhone:如何从 View Controller 获取自定义单元格的按钮操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7146782/
我是一名优秀的程序员,十分优秀!