我正在尝试检查屏幕上特定区域是否发生了点击.我已经设置了TapGestureRecognizer,这是我现在拥有的代码:
func handleTap(tap: UITapGestureRecognizer) { var point = tap.locationInView(self.view) println("tapped") if (tap.state == UIGestureRecognizerState.Ended) { if (CGRectContainsPoint(self.Region.frame,point)) { println("touch") var y = kbHeight - textYoutube.center.y youTextConst.constant += y } } }
该应用程序识别了水龙头,但未识别特定区域的水龙头,代码有什么问题?
UPDATE
我不知道它是否重要,但Region是TextView
解决方法
(注意:我假设self.Region是一个UIView.你没有解释你的问题是什么,所以我必须猜测它可能是什么.顺便说一句,请不要使用大写字母的名字我这样做只是为了让你轻松匹配你自己的代码.)
想想坐标系.你是说
var point = tap.locationInView(self.view)
这意味着该点位于self.view的坐标系中.但如果您打算调用CGRectContainsPoint,那就是错误的坐标系.在你计算point和selfRegion之间的关系之前,你需要指向与self.Region相同的坐标系:
point = self.Region.convertPoint(point,fromView:self.view)
现在你可以使用self.Region.bounds,它与point的新值在同一坐标系中:
if CGRectContainsPoint(self.Region.bounds,point)