tableView 的一些常用方法

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 的一些常用方法)