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
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:
- How can I find work as a writer?Best solution by Yahoo! Answers
- How do I find out if a business is legitimate?Best solution by bbb.org
- How do I find someone with a yahoo address?Best solution by Yahoo! Answers
- How do I find a person from another country?Best solution by traveltips.usatoday.com
- How can I find pictures of a specific unknown person?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.