CGRectIntersectsRect 未检测到相交视图

Posted

技术标签:

【中文标题】CGRectIntersectsRect 未检测到相交视图【英文标题】:CGRectIntersectsRect not detecting the intersected view 【发布时间】:2013-12-20 06:42:04 【问题描述】:

我有两个滚动视图,一个在左侧,另一个在右侧。

在左侧滚动视图中,我放置了带有标签的 uiviews 列表,用于命名它们。

在右滚动视图中,我放置了滚动视图列表,在每个滚动视图中,我放置了带有标签的 uiview 列表,用于命名它们。

我正在使用 CGRectIntersectsRect 来检测左侧滚动视图中的一个 uiview 与右侧滚动视图中的任何 uiview 的交集。

我的问题是 CGRectIntersectsRect 没有检测到相交的视图。

我正在使用 uinavigationcontroller。

我使用了在谷歌搜索中获得的 OBDragDropTest 项目。我正在做出改变。

我的代码如下,

-(void) handleDropAnimationForOvum:(OBOvum*)ovum withDragView:(UIView*)dragView dragDropManager:(OBDragDropManager*)dragDropManager

  UIView *itemView = nil;


  if ([ovum.dataObject isKindOfClass:[NSNumber class]])
  

       itemView = [self.view viewWithTag:[ovum.dataObject integerValue]];



      [viewsAry removeAllObjects];

      [viewsAry addObjectsFromArray:unAssignedViewContents];

      [viewsAry addObjectsFromArray:removeViewContents];

      [viewsAry addObjectsFromArray:repairViewContents];

      [viewsAry addObjectsFromArray:paintViewContents];

      [viewsAry addObjectsFromArray:refitViewContents];

      [viewsAry addObjectsFromArray:detailViewContents];

      [viewsAry addObjectsFromArray:completedViewContents];


      NSArray *subViewsInView=[NSArray arrayWithArray:viewsAry];






      for(UIView *theView in subViewsInView)
      

          if (![itemView isEqual:theView])
          

              if(CGRectIntersectsRect(theView.frame, ovum.dragView.frame))
              
                  NSLog(@"view Tag  =  %d",theView.tag);
              

          

      



  

我为所有视图和滚动视图设置了 setUserInteractionEnabled = True。

请给出这个问题的解决方案。

【问题讨论】:

请发布您的代码。 必须显示代码。你用的是什么坐标系? 【参考方案1】:

代替下面的代码

if (![itemView isEqual:theView])

    if(CGRectIntersectsRect(theView.frame, ovum.dragView.frame))
    
         NSLog(@"view Tag  =  %d",theView.tag);
    

我用过

if (![itemView isEqual:theView])

    CGPoint point = [theView convertPoint:dragView.center fromView:dragView.superview];
    if([theView pointInside:point withEvent:nil])
    
        NSLog(@"view Tag  =  %d",theView.tag);
    

并完成子视图交集的检测。现在我可以得到接收者的标签号了。

【讨论】:

以上是关于CGRectIntersectsRect 未检测到相交视图的主要内容,如果未能解决你的问题,请参考以下文章

CGRectIntersectsRect 工作不一致

为啥对象与 CGRectIntersectsRect 重叠?

如何在没有物理的情况下检测碰撞

在 CGRectIntersectsRect 中的调用错误中缺少参数 #2

如何检测两个 UIImageView 何时重叠?

在里面使用 View Frame。 [复制]