Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

is there a way to verify if a point is inside a specific rect. At example: I'm dragging an imageView and I want to verify if its central point CGPint is inside another imageView; how can I do?

share|improve this question

2 Answers

up vote 18 down vote accepted

See CGRectContainsPoint() in the documentation.

share|improve this answer
This answer is essentially RTFM, and was flagged by the system as "low quality". At least provide a link. – Brock Adams Nov 8 '11 at 5:44
1  

UIView's pointInside:withEvent: could be a good solution. Will return a boolean value indicating wether or not the given CGPoint is in the UIView instance you are using. Example:

UIView *aView = [UIView alloc]initWithFrame:CGRectMake(0,0,100,100);
CGPoint aPoint = CGPointMake(5,5);
BOOL isPointInsideView = [aView pointInside:aPoint withEvent:nil];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.