我正在制作一种"保持在线间"使用swift的iPhone应用程序,我有一个移动的imageview和2个代表线条的图像视图。如何检测运动图像视图何时触及或触摸线图像视图?
答案 0 :(得分:1)
如何使用:https://developer.apple.com/documentation/coregraphics/1454747-cgrectintersectsrect
if (CGRectIntersectsRect(imageview1.frame, line1.frame) || (CGRectIntersectsRect(imageview1.frame, line2.frame)) {
// Apply your logic for when the collide
}