美文网首页iOS 项目技巧
UIView控件坐标系转换

UIView控件坐标系转换

作者: 萧雪痕 | 来源:发表于2016-06-23 14:14 被阅读730次

版权声明:未经本人允许,禁止转载.

1.坐标转换方法

  1. 将point由point所在的视图转换到目标视图view中,返回在目标视图view中的point
    - (CGPoint)convertPoint:(CGPoint)point toView:(nullable UIView *)view;
  2. 将point从view中转换到当前视图,返回在当前视图中的point
    - (CGPoint)convertPoint:(CGPoint)point fromView:(nullable UIView *)view;
  3. 将rect由rect所在的视图转换到目标视图view中,返回在目标视图view中的rect
    - (CGRect)convertRect:(CGRect)rect toView:(nullable UIView *)view;
  4. 将rect从view中转换到当前视图,返回在当前视图中的rect
    - (CGRect)convertRect:(CGRect)rect fromView:(nullable UIView *)view;
    注:toView中的view == nil时,view为[UIApplication sharedApplication].keyWindow;

2.同一坐标系的比较

  1. 判断 rect1是否包含 rect2,返回bool
    BOOL isContain = CGRectContainsRect(rect1, rect2);
  2. 判断 rect1和 rect2是否有重叠,返回bool
    BOOL isIntersect = CGRectIntersectsRect(rect1, rect2);
  3. 判断点point是否在rect中,返回bool
    BOOL isContain = CGRectContainsPoint(rect, point);

实例1:判断UIView控件是否在主窗口上

方法写在UIView的Category中

- (BOOL)isShowingOnKeyWindow {
    //主窗口
    UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow;

    //以主窗口左上角为坐标原点,计算self的矩形框
    CGRect newFrame = [keyWindow convertRect:self.bounds fromView:self];
    CGRect winBounds = keyWindow.bounds;

    //主窗口的bounds 和 self的矩形框 是否有重叠
    BOOL intersects = CGRectIntersectsRect(newFrame, winBounds);

    return !self.isHidden && self.alpha > 0.01 && self.window == keyWindow && intersects;
}

实例2:判断两个View是否有重叠

方法写在UIView的Category中
- (BOOL)intersectWithView:(UIView *)view {
//主窗口
UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow;
//以主窗口左上角为坐标原点,计算self和view的矩形框
CGRect selfRect = [self convertRect:self.bounds toView:keyWindow];
CGRect viewRect = [view convertRect:view.bounds toView:keyWindow];
//返回是否有重叠的结果
return CGRectIntersectsRect(selfRect, viewRect);
}

相关文章

  • UIView控件坐标系转换

    版权声明:未经本人允许,禁止转载. 1.坐标转换方法 将point由point所在的视图转换到目标视图view中,...

  • 常用的分类

    转换坐标系 图像截屏 - (UIImage *)screenShotOfView:(UIView *)view {...

  • iOS坐标系的转换

    什么是坐标系的转换? 不同坐标系,控件的View的frame值是不同的,比如上图的红色View,以蓝色控件为父控件...

  • iOS-判断两个控件是否有重叠

    目录 一、父控件相同的两个控件的重叠判断二、坐标系转换三、不同父控件的两个控件的重叠判断四、总结 一、父控件相同的...

  • 1. UIView

    标签:获取子视图、添加子视图、坐标转换、Superview、UIview的常用属性 子控件的点坐标转化为父控件的坐...

  • layer

    设置控件进行3D过渡转换注:UIView只能进行2D转换使用的是CGATransform,layer是CATran...

  • 2019-05-04ios 中在UIview中添加UIview

    ios 中在UIview中添加UIview A子控件,之后在UIview A子控件上添加一个UIbutton控件,...

  • iOS开发-UIView

    UIView 什么是UIView UIVIew就是控件/视图 用户在屏幕上看到的东西都是UIView 它是所有控件...

  • UIView 视图间坐标系转换

    如你所知,iOS中坐标系转换,需要使用以下两个系统API。 本文将详细讲述两个API的具体使用方法及含义。 con...

  • coreGraphics

    1. iOS 坐标系 NSView坐标系 : 左手坐标系 原点左上角UIView坐标系 : 左手坐标系 原点左...

网友评论

本文标题:UIView控件坐标系转换

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