有没有办法验证CGPoint
是否在特定CGRect
内。
一个例子是:
我正在拖动UIImageView
,我想验证其中心点CGPoint
是否位于另一个UIImageView
答案 0 :(得分:278)
使用CGRect.contains(_: CGPoint)
:
let rect = ...
let point = ...
rect.containsPoint(point)
bool CGRectContainsPoint(CGRect rect, CGPoint point);
<强>参数强>
rect
要检查的矩形。point
要检查的要点。
回报价值
如果矩形不为null或为空且该点位于矩形内,则为true;否则为false。否则,假。如果点的坐标位于矩形内或最小X或最小Y边上,则在矩形内部考虑点。
答案 1 :(得分:37)
在Swift中看起来像这样:
let point = CGPointMake(20,20)
let someFrame = CGRectMake(10,10,100,100)
let isPointInFrame = CGRectContainsPoint(someFrame, point)
Swift 3版本:
let point = CGPointMake(20,20)
let someFrame = CGRectMake(10,10,100,100)
let isPointInFrame = someFrame.contains(point)
Link to documentation。如果两者都在同一坐标系中,请记得检查遏制,否则需要进行转换(some example)
答案 2 :(得分:11)
UIView的pointInside:withEvent:可能是一个很好的解决方案。 将返回一个布尔值,表示给定的CGPoint是否在您正在使用的UIView实例中。 例如:
UIView *aView = [UIView alloc]initWithFrame:CGRectMake(0,0,100,100);
CGPoint aPoint = CGPointMake(5,5);
BOOL isPointInsideView = [aView pointInside:aPoint withEvent:nil];
答案 3 :(得分:9)
在swift中你可以这样做:
let isPointInFrame = frame.contains(point)
“frame”是CGRect,“point”是CGPoint
答案 4 :(得分:5)
在目标c中,您可以使用 CGRectContainsPoint(yourview.frame,touchpoint)
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
UITouch* touch = [touches anyObject];
CGPoint touchpoint = [touch locationInView:self.view];
if( CGRectContainsPoint(yourview.frame, touchpoint) ) {
}else{
}}
在swift 3 yourview.frame.contains(接触点)
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
let touch:UITouch = touches.first!
let touchpoint:CGPoint = touch.location(in: self.view)
if wheel.frame.contains(touchpoint) {
}else{
}
}
答案 5 :(得分:3)
这很简单,您可以使用以下方法来完成这类工作: -
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
}
在您的情况下,您可以将 imagView.center 作为点传递,将另一个 imagView.frame 传递为关于方法的矩形。
您也可以在 UITouch 方法:
中使用此方法{{1}}
答案 6 :(得分:0)
我开始学习如何使用Swift进行编码,并试图解决这个问题,这就是我在Swift游乐场上提出的:
// Code
var x = 1
var y = 2
var lowX = 1
var lowY = 1
var highX = 3
var highY = 3
if (x, y) >= (lowX, lowY) && (x, y) <= (highX, highY ) {
print("inside")
} else {
print("not inside")
}
打印
答案 7 :(得分:0)
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.view];
CGRect rect1 = CGRectMake(vwTable.frame.origin.x,
vwTable.frame.origin.y, vwTable.frame.size.width,
vwTable.frame.size.height);
if (CGRectContainsPoint(rect1,touchLocation))
NSLog(@"Inside");
else
NSLog(@"Outside");
}