获取UITableView指定行在指定视图中的位置

开发中我们常常需要获取表视图的特定某一行在特定的视图中的位置,例如做用户引导页面的时候,我们需要指向某一行,如果写死的话,表视图的行高不固定或者表头行高不固定,这样就会出错,解决方法如下:

代码如下:

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
    CGRect rectInTableView = [_tableView rectForRowAtIndexPath:indexPath];
    CGRect rect2 = [_tableView convertRect:rectInTableView toView:[_tableView superview]];

上面第一行是获取表视图的第1组的第0行;

第二行是获取的第1组的第0行在它所在的UITableView中的位置;

第三行是将第二行获取的位置信息转换为表视图的父视图中的位置;我们这里表视图的父视图正好是整个屏幕,因此我们获取的位置信息也就是:第1组的第0行在整个屏幕中的位置;


这里苹果还提供了以下几个方法来进行位置和点的转换:

- (CGPoint)convertPoint:(CGPoint)point toView:(nullable UIView *)view;
- (CGPoint)convertPoint:(CGPoint)point fromView:(nullable UIView *)view;
- (CGRect)convertRect:(CGRect)rect toView:(nullable UIView *)view;
- (CGRect)convertRect:(CGRect)rect fromView:(nullable UIView *)view;


你可能感兴趣的:(ios,位置转换)