控件相对屏幕的坐标位置

//    需要获取的对象为view,则该视图相对屏幕的位置可使用下面方法实现:

    UIWindow * window=[[[UIApplicationsharedApplication] delegate] window];

    CGRect rect=[view convertRect: view.bounds toView:window];

//    需要获取的对象为  UICollectionViewCell   则该视图相对屏幕的位置可使用下面方法实现:

    CGRect rectInCollectionView = [collectionViewconvertRect:cell.frametoView:collectionView];

    CGRect rect = [collectionViewconvertRect:rectInCollectionViewtoView:[collectionView superview]];


//     需要获取的对象为 UITableViewCell 则该视图相对屏幕的位置可使用下面方法实现:.

    CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];

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




     // 将像素pointpoint所在视图转换到目标视图view中,返回在目标视图view中的像素值

    - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;

    // 将像素pointview中转换到当前视图中,返回在当前视图中的像素值

    - (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view;

    

    // rectrect所在视图转换到目标视图view中,返回在目标视图view中的rect

    - (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;

    // rectview中转换到当前视图中,返回在当前视图中的rect

    - (CGRect)convertRect:(CGRect)rect fromView:(UIView *)view;


你可能感兴趣的:(iOS学习)