美文网首页
ios 坐标转换

ios 坐标转换

作者: nemoispretty | 来源:发表于2017-04-06 17:18 被阅读0次

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

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

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

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

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

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

    // 将rect从view中转换到当前视图中,返回在当前视图中的rect

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

    例把UITableViewCell中的subview(btn)的frame转换到controllerA中

    // controllerA 中有一个UITableView, UITableView里有多行UITableVieCell,cell上放有一个button

    // 在controllerA中实现:

    CGRect rc = [cell convertRect:cell.btn.frame toView:self.view];

    CGRect rc = [self.view convertRect:cell.btn.frame fromView:cell];

    // 此rc为btn在controllerA中的rect

    或当已知btn时:

    CGRect rc = [btn.superview convertRect:btn.frame toView:self.view];

    CGRect rc = [self.view convertRect:btn.frame fromView:btn.superview];

    UIView*greenView = [[UIViewalloc]initWithFrame:CGRectMake(10, 20, 100, 100)];

    greenView.backgroundColor= [UIColorgreenColor];

    [self.viewaddSubview:greenView];

    UIView*redView = [[UIViewalloc]initWithFrame:CGRectMake(110, 120, 200, 200)];

    redView.backgroundColor= [UIColorredColor];

    [self.viewaddSubview:redView];

    UIView*blueView = [[UIViewalloc]initWithFrame:CGRectMake(10, 20, 100, 100)];

    [redViewaddSubview:blueView];

    blueView.backgroundColor= [UIColorblueColor];

    CGRectframe= [redViewconvertRect:blueView.frametoView:greenView];

    UIView*overLapView1 = [[UIViewalloc]initWithFrame:frame];

    [self.viewaddSubview:overLapView1];

    overLapView1.backgroundColor= [UIColororangeColor];

    在开发中我们经常会需要判断两个控件是否包含重叠,此时如果控件A和B的坐标原点如果不确定的话,那么肯定会导致比较不正确发生错误

    判断包含重叠的代码如下:

    CGRectContainsRect(<#CGRect rect1#>, <#CGRect rect2#>)

    CGRectContainsPoint(<#CGRect rect#>, <#CGPoint point#>)

    CGRectIntersectsRect(<#CGRect rect1#>, <#CGRect rect2#>)

    其中

    CGRectContainsRect表示rect1和rect2是否有重叠

    CGRectContainsPoint表示point是不是在rect上

    CGRectIntersectsRect的意思是rect1是否包含了rect2

    那么问题就来了,既然坐标原点不确定,那么能不能转换A的坐标原点到B上呢?答案是可以的,具体实现代码如下:

    - (CGPoint)convertPoint:(CGPoint)point toView:(nullableUIView*)view;- (CGPoint)convertPoint:(CGPoint)point fromView:(nullableUIView*)view;// 后面就具体使用下面的代码举例,下面的会了,上面的自然也就会了- (CGRect)convertRect:(CGRect)rect toView:(nullableUIView*)view;- (CGRect)convertRect:(CGRect)rect fromView:(nullableUIView*)view;

    相关文章

      网友评论

          本文标题:ios 坐标转换

          本文链接:https://www.haomeiwen.com/subject/napqattx.html