3

当拖动到另一个子视图顶部以查看它是否发生碰撞时,我试图检测一个子视图。有什么好的方法可以做到这一点?我正在使用 UIPanGestureRecognizer 来拖动元素。谢谢

4

1 回答 1

7

您可以CGRectIntersectsRect()用于执行任务:

if(CGRectIntersectsRect(firstSubview.frame, secondSubview.frame))
{
   //collides, do your task here
}
于 2013-06-12T17:27:43.413 回答