This question already has answers here:
Getting row of UITableView cell on button press
(10个回答)
5年前关闭。
我有一个连接到UITableViewCell类的按钮(动作)。如何从tableViewCell类获取tableView的indexPath?
(10个回答)
5年前关闭。
我有一个连接到UITableViewCell类的按钮(动作)。如何从tableViewCell类获取tableView的indexPath?
@implement myTableViewCell
-(IBAction)buttonPressed{
// Do something to get indexPath?
}
最佳答案
在自定义Cell.hpp中
在tableView dataSource文件中
//单元格类中的按钮动作
@property (nonatomic, strong) UIButton *btn;
09-25 16:16