问题描述
我一直在寻找解决方案,但似乎找不到适合我的解决方案.我有一个自定义单元格,里面有一个按钮.我的问题是如何将 indexPath 传递给 action 方法?
I've been looking around to find a solution to this, but can't seem to find one that works for me. I have a custom cell with a button inside. My problem is how do I pass the indexPath to the action method?
我现在正在做
[cell.showRewards addTarget:self action:@selector(myAction:) forControlEvents:UIControlEventTouchUpInside];
在我的 cellForRowAtIndexPath 方法中,我的方法是:
In my cellForRowAtIndexPath method and my method is:
-(IBAction)myAction:(id)sender{
NSIndexPath *indexPath = [self.tableView indexPathForCell:(MyCustomCell *)[sender superview]];
NSLog(@"Selected row is: %d",indexPath.row);
}
有什么建议吗?谢谢.
推荐答案
虽然我觉得为按钮设置 tag 是一种方法.您可能需要编写代码以确保每次重用单元格时,都会在按钮对象上更新相应的标签.
While I feel setting tag for the button is one way to go. You might need to write code to make sure each time the cell gets reused, the appropriate tag gets updated on the button object.
相反,我觉得这可行.试试这个 -
Instead I have a feeling this could work. Try this -
-(IBAction)myAction:(id)sender
{
CGPoint location = [sender locationInView:self.tableView];
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
UITableViewCell *swipeCell = [self.tableView cellForRowAtIndexPath:indexPath];
NSLog(@"Selected row: %d", indexPath.row);
//......
}
实际上,您所做的是获取点击发生位置相对于您的 tableView 的坐标.获取坐标后,tableView 可以通过indexPathForRowAtPoint: 方法给你indexPath.你很好去追求这个......
Essentially what you are doing is getting the coordinates of where the click happened with respect to your tableView. After getting the coordinates, tableView can give you the indexPath by using the method indexPathForRowAtPoint:. You are good to go after this...
瞧,您不仅拥有 indexPath,还拥有点击发生的实际单元格.要从您的数据源中获取实际数据(假设它的 NSArray),您可以这样做 -
Voila, you have not just the indexPath but also the actual cell where the click happened. To get the actual data from your datasource (assuming its NSArray), you can do -
[datasource objectAtIndex:[indexPath row]];
这篇关于自定义 UITableViewCell 按钮操作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)