Detect collision of two UIView's in swift

妖精的绣舞 提交于 2020-01-19 16:23:29

问题


I have two UIViews on my ViewController. I added panGesture to first view and when i start moving this view the second view will move towards first view. I want to detect an event when these two views collides. Here is my code.

@IBAction func dragFirstView(sender: UIPanGestureRecognizer) {

        let translation = sender.translationInView(self.view)

        dispatch_async(dispatch_get_main_queue()) { () -> Void in
            UIView.animateWithDuration(2.5, delay: 0.0, options: UIViewAnimationOptions.CurveEaseOut, animations: {
                self.secondView.frame = CGRectMake(sender.view!.center.x + translation.x, sender.view!.center.y + translation.y, self.secondView.frame.size.width, self.secondView.frame.size.height)
                }, completion: nil)
        }

        sender.view!.center = CGPoint(x: sender.view!.center.x + translation.x, y: sender.view!.center.y + translation.y)
        sender.setTranslation(CGPointZero, inView: self.view)
    }

回答1:


what about

if (CGRectIntersectsRect(secondView.frame, sender.frame)) {
        // Do something
    }

CGRectIntersectsRect(::) : Returns whether two rectangles intersect.




回答2:


Swift 3 CGRectIntersectsRect replace with intersects

for collider in colliders
        {
            if (collider.frame.intersects(frameTarget)) {
                return
            }
        }


来源:https://stackoverflow.com/questions/31587208/detect-collision-of-two-uiviews-in-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!