How to find out whether a shape has touched another shape?

How do i find out if a touch is over the frame of another shape?

  • I know how to get the position touched, so now i have a CGPoint with the touched position. What's the best way to find out if the touch is over a UIView or not? I know of the method of: if touchpoint.x > frame.origin.x && touchpoint.x < frame.size.width + frame.origin.x etc., but is this the best way of going about it?

  • Answer:

    If you simply want to know if a point is inside the bounds of a view, you can use the pointInside:withEvent: method. CGPoint touchPoint = [theTouch locationInView:theView]; // If the point was retrieved for a different view, it must be converted to the coordinate space of the destination view using convertPoint:fromView: if([theView pointInside:touchPoint withEvent:nil]) { NSLog(@"point inside"); }

Andrew at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

Ugh's answer covers views, which I believe is what you want; if you have an arbitrary CGRect, you can use http://developer.apple.com/library/ios/documentation/GraphicsImaging/Reference/CGGeometry/Reference/reference.html#//apple_ref/c/func/CGRectContainsPoint: BOOL isInside = CGRectContainsPoint(myRect, touchPoint);

Jacques Cousteau

Yes, CGRectContainsPoint will save you from writing so many comparision equations.

MobileSoul

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.