码迷,mamicode.com
首页 > 其他好文 > 详细

自定义cell里的button获得cell的indexpath

时间:2015-07-29 15:41:44      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:


假如你是用代码方式直接将控件(如UILabel、UIButton等)加到UITableView的cell中去的话,,,在出了

 

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  

{  

//自定义代码  

return cell;   

 }  


这个函数后,,,当你点击cell的时候想知道到底是点击了第几行,,这时候你就可以通过在以下代码获得点击的行数。

 

 

UITableViewCell *cell = (UITableViewCell *)[btn superview];  

NSIndexPath *indexPath = [_myTableView indexPathForCell:cell];  

NSLog(@"indexPath is = %i",indexPath.row);  


注释:btn是你通过代码的方式添加到cell的一个Button,_myTableView是UITableView的一个关联变量。

 

假如你是通过新建 .xib的方式新建一个继承UITableViewCell的 .xib(例如:shopCell.xib)文件添加到原有UITableView的cell的方式的话,,,用上面这种方法是获取不到点击cell所在的行数的,也就是说你不知道点击的cell到底是第几行。

技术分享

同样可以用上面的代码,,不过要稍微修改一下:

 

 

UITableViewCell *cell = (UITableViewCell *)[[[btn superview] superview] superview];  

NSIndexPath *indexPath = [_myTableView indexPathForCell:cell];  

NSLog(@"indexPath is = %i",indexPath.row);  

 

解释:第一句代码中的[btn superview]是shopCell 的contentView,第二个superview是shopCell自己本身的cell,第三个superview是UITableView的cell,,注意不要弄混淆了。

 

知道row,然后通过row确定是哪一行的cell

 NSIndexPath *index1 =  [NSIndexPath indexPathForItem:row inSection:0];  

UITableViewCell *cell1 =  [_myTableView cellForRowAtIndexPath:index1];  

自定义cell里的button获得cell的indexpath

标签:

原文地址:http://www.cnblogs.com/song-kl/p/4685811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!