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

UITableViewCell的两种获取indexPath的方法

时间:2015-11-14 14:55:34      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1. 通过叫Point获取

    CGPoint correctedPoint = [textField convertPoint:textField.bounds.origin toView:self.tableView];    

    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:correctedPoint];

    NSLog(@"Button tapped in row %ld", (long)indexPath.row);

2.通过superview获取

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

    NSIndexPath *path = [self.mytableView indexPathForCell:cell];

   self.text_IndexPath = path.section;

UITableViewCell的两种获取indexPath的方法

标签:

原文地址:http://www.cnblogs.com/xiaoxiaolei/p/4964236.html

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