tableView 的一些常用方法

2017-03-07  本文已影响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]];

上一篇下一篇

猜你喜欢

热点阅读