简体   繁体   English

iOS CGRect位于另一个CGRect中

[英]iOS CGRect is inside another CGRect

Anyone has a good solution for the following task? 任何人都有以下任务的良好解决方案?

I need to check if a CGRect is inside another CGRect and return a CGPoint, that gives the offset if the rect window is outside in any dimension from the containing. 我需要检查一个CGRect是否在另一个CGRect中并返回一个CGPoint,如果rect窗口在包含的任何维度之外,则给出偏移量。

thanks in advance 提前致谢

Swift 4.1 Swift 4.1

// Returns how much is the rect outside of the view, 0 if inside
func isRectVisibleInView(rect: CGRect, inRect: CGRect) -> CGPoint {
    var offset = CGPoint()

    if inRect.contains(rect) {
        return CGPoint(x: 0, y: 0)
    }

    if rect.origin.x < inRect.origin.x {
        // It's out to the left
        offset.x = inRect.origin.x - rect.origin.x
    } else if (rect.origin.x + rect.width) > (inRect.origin.x + inRect.width) {
        // It's out to the right
        offset.x = (rect.origin.x + rect.width) - (inRect.origin.x + inRect.width)
    }

    if rect.origin.y < inRect.origin.y {
        // It's out to the top
        offset.y = inRect.origin.y - rect.origin.y
    } else if rect.origin.y + rect.height > inRect.origin.y + inRect.height {
        // It's out to the bottom
        offset.y = (rect.origin.y + rect.height) - inRect.origin.y + inRect.height
    }


    return offset
}

Swift 3 update Swift 3更新

// Returns how much is the rect outside of the view, 0 if inside
func isRectVisibleInView(rect: CGRect, inRect: CGRect) -> CGPoint {
    var offset = CGPoint()

    if CGRectContainsRect(inRect, rect) {
        return CGPointMake(0, 0)
    }

    if rect.origin.x < inRect.origin.x {
        // It's out to the left
        offset.x = inRect.origin.x - rect.origin.x
    } else if (rect.origin.x + rect.width) > (inRect.origin.x + inRect.width) {
        // It's out to the right
        offset.x = (rect.origin.x + rect.width) - (inRect.origin.x + inRect.width)
    }

    if rect.origin.y < inRect.origin.y {
        // It's out to the top
        offset.y = inRect.origin.y - rect.origin.y
    } else if rect.origin.y + rect.height > inRect.origin.y + inRect.height {
        // It's out to the bottom
        offset.y = (rect.origin.y + rect.height) - inRect.origin.y + inRect.height
    }


    return offset
}

Maybe 也许

CGRectContainsRect(CGRect rect1, CGRect rect2)

to check if cgrect is inside another, this method return a bool. 检查cgrect是否在另一个内部,此方法返回一个bool。

Swift 4 斯威夫特4

Simple use let boolValue = tableView.bounds.contains(cellRect) 简单使用let boolValue = tableView.bounds.contains(cellRect)

//CoreGraphics Module- // CoreGraphics模块 -

@available(iOS 2.0, *)
public func contains(_ point: CGPoint) -> Bool


@available(iOS 2.0, *)
public func contains(_ rect2: CGRect) -> Bool

Here's a C# translation of the accepted answer for the Xamarin folk: 这是Xamarin民众接受的答案的C#翻译:

    CGPoint isRectVisibleInView(CGRect rect, CGRect inRect) {
        var offset = new CGPoint ();

        if (inRect.Contains(rect)) {
            return new CGPoint (0, 0);
        }

        if (rect.X < inRect.X) {
            // It's out to the left
            offset.X = inRect.X - rect.X;
        } else if (rect.GetMaxX () > inRect.GetMaxX ()) {
            // It's out to the right
            offset.X = rect.GetMaxX () - inRect.GetMaxX ();
        }

        if (rect.Y < inRect.Y) {
            // It's out to the top
            offset.Y = inRect.Y - rect.Y;
        } else if (rect.GetMaxY () > inRect.GetMaxY ()) {
            // It's out to the bottom
            offset.Y = rect.GetMaxY () - inRect.GetMaxY ();
        }


        return offset;
    }

Really? 真? OK... here it is: 好的......这是:

+ (CGPoint) isRect:(CGRect)inRect1 inRect:(CGRect)inRect2
{
    CGPoint offsetPoint = {0, 0};
    if (!CGRectContainsRect(inRect1, inRect2)) {
        offsetPoint.x = inRect1.origin.x - inRect2.origin.x;
        offsetPoint.y = inRect1.origin.y - inRect2.origin.y;
    }

    return offsetPoint;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM