Custom UITableViewCell button action?(自定义 UITableViewCell 按钮操作?)
问题描述
我一直在寻找解决方案,但似乎找不到适合我的解决方案.我有一个自定义单元格,里面有一个按钮.我的问题是如何将 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 按钮操作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:自定义 UITableViewCell 按钮操作?


基础教程推荐
- AdMob 广告未在模拟器中显示 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01