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



    假如你是用代码方式直接将控件(如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];  

  • 相关阅读:
    使用C++调用并部署pytorch模型
    相位展开(phase unwrapping)算法研究与实践
    【计算机视觉】图像配准(Image Registration)
    读书笔记 - 《数字图像处理》(更新中...)
    ssh框架复习
    SVN 版本控制
    Spring的jdbcTemplate 与原始jdbc 整合c3p0的DBUtils 及Hibernate 对比 Spring配置文件生成约束的菜单方法
    JDK 动态代理 讨债实例
    Spring 框架配置web.xml 整合web struts
    Spring整合JUnit spring静态对象属性的注入
  • 原文地址:https://www.cnblogs.com/song-kl/p/4685811.html
Copyright © 2020-2023  润新知