开发者

How to test if a point is in a view

开发者 https://www.devze.com 2023-03-16 00:21 出处:网络
I have a UIImag开发者_Go百科eView and I have a CGPoint on the screen. I want to be able to test that point to see if it is in the UIImageView. What would be the best way to do this?CGPoint is no good

I have a UIImag开发者_Go百科eView and I have a CGPoint on the screen. I want to be able to test that point to see if it is in the UIImageView. What would be the best way to do this?


CGPoint is no good with a reference point. If your point is in window's coordinates then you can get it using

CGPoint locationInView = [imageView convertPoint:point fromView:imageView.window];
if ( CGRectContainsPoint(imageView.bounds, locationInView) ) {
    // Point lies inside the bounds.
}

You may also call pointInside:withEvent: method

if ( [imageView pointInside:locationInView withEvent:nil] ) {
    // Point lies inside the bounds
}


Tested in Swift 4

view.frame.contains(point)


if(CGRectContainsPoint([myView frame], point))

where point is your CGPoint and myView is your UIImageView


I'll assume you have a full-screen window (pretty reasonable, I think). Then you can transform the point from the window's coordinate space to the UIImageView's using:

CGPoint point = ...
UIWindow window = ...
UIImageView imageView = ...
CGPoint transformedPoint = [window convertPoint:point toView:imageView];

Then, you can test if the point is in the image view's frame as follows:

if(CGRectContainsPoint(imageView.frame, transformedPoint))
{
    // do something interesting....
}


In Swift 3

let isPointInFrame = UIScreen.main.bounds.contains(newLocation)
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号