美文网首页
tableView 的一些常用方法

tableView 的一些常用方法

作者: 小猪圣骑士 | 来源:发表于2017-03-07 17:44 被阅读16次

    1.tableView:didSelectRowAtIndexPath: 获得选中的cell

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    2.tableView:didSelectRowAtIndexPath: 选中的Cell 相对屏幕的坐标

    CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];

    CGRect rect = [tableView convertRect:rectInTableView toView:[tableView superview]];

    相关文章

      网友评论

          本文标题:tableView 的一些常用方法

          本文链接:https://www.haomeiwen.com/subject/nfamgttx.html