我试图弄清楚如何确定我的接触点是否在我有 UIView 作为 subview 的位置。背景是 UIView 本身,我正在将多个其他 UIView 添加到...所以当我长按并在按住触摸的同时更改位置时,我想知道此时是否有 UIView。
我一直在想,仍然不清楚如何去做,但遇到了this这让我想到了获取层次结构的索引并检查它是否大于 1。但是我怎么能在我接触的地方这样做呢?
任何提示或线索将不胜感激。
Best Answer-推荐答案 strong>
您必须将两个引用存储在两个对象中 myParentView 和 mySubView 现在只需使用此方法..
-(void)touchesBeganNSSet *)touches withEventUIEvent *)event {
CGPoint locationPoint = [[touches anyObject] locationInView: myParentView];
UIView* viewYouWishToObtain = [self hitTest:locationPoint withEvent:event];
if(mySubView == viewYouWishToObtain){
//That view is touched
}else{
//That view is not touched
}
}
关于ios - 当我移动触摸点时,如何确定我是否有一个长按的 UIView?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40827607/
|