Detecting if UIView is intersecting other UIViews

前端 未结 4 986
谎友^
谎友^ 2020-12-03 09:35

I have a bunch of UIViews on the screen. I would like to know what\'s the best to way to check if a particular view (which I have reference to) is intersection ANY other vie

相关标签:
4条回答
  • 2020-12-03 09:45

    There's a function called CGRectIntersectsRect which receives two CGRects as arguments and returns if the two given rects do intersect. And UIView has subviews property which is an NSArray of UIView objects. So you can write a method with BOOL return value that'll iterate through this array and check if two rectangles intersect, like such:

    - (BOOL)viewIntersectsWithAnotherView:(UIView*)selectedView {
    
        NSArray *subViewsInView = [self.view subviews];// I assume self is a subclass
                                           // of UIViewController but the view can be
                                           //any UIView that'd act as a container 
                                           //for all other views.
    
         for(UIView *theView in subViewsInView) {
    
           if (![selectedView isEqual:theView])
               if(CGRectIntersectsRect(selectedView.frame, theView.frame))  
                  return YES;
        }
    
      return NO;
    }
    
    0 讨论(0)
  • 2020-12-03 09:55

    First, create some array that stores the frames of all of your UIViews and their associated reference.

    Then, potentially in a background thread, you can run some collision testing using what's in the array. For some simple collision testing for rectangles only, check out this SO question: Simple Collision Algorithm for Rectangles

    Hope that helps!

    0 讨论(0)
  • 2020-12-03 09:55

    To Achieve the same thing in swift as per the accepted answer then here is the function. Readymade Code. Just copy and use it as per the steps. By the way I am using Xcode 7.2 with Swift 2.1.1.

    func checkViewIsInterSecting(viewToCheck: UIView) -> Bool{
        let allSubViews = self.view!.subviews //Creating an array of all the subviews present in the superview.
        for viewS in allSubViews{ //Running the loop through the subviews array
            if (!(viewToCheck .isEqual(viewS))){ //Checking the view is equal to view to check or not
                if(CGRectIntersectsRect(viewToCheck.frame, viewS.frame)){ //Checking the view is intersecting with other or not
                    return true //If intersected then return true
                }
            }  
        }
        return false //If not intersected then return false
    }
    

    Now call this function as per the following -

    let viewInterSected = self.checkViewIsInterSecting(newTwoPersonTable) //It will give the bool value as true/false. Now use this as per your need
    

    Thanks.

    Hope this helped.

    0 讨论(0)
  • 2020-12-03 09:55

    In my case the views were nested, so I did this (works with both nested and not):

    extension UIView {
        func overlaps(other view: UIView, in viewController: UIViewController) -> Bool {
            let frame = self.convert(self.bounds, to: viewController.view)
            let otherFrame = view.convert(view.bounds, to: viewController.view)
            return frame.intersects(otherFrame)
        }
    }
    

    Hope it helps.

    0 讨论(0)
提交回复
热议问题