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]];
网友评论