如何识别特定视图中的触摸
如何接触特定视图。
我正在使用
CGPoint Location = [[touches anyObject] locationInView:self.view ];
,但只想在单击特定子视图时触发该操作。
如何做到这一点。
How to get touch on a particular view.
I am using
CGPoint Location = [[touches anyObject] locationInView:self.view ];
but want to trigger the action only if an particular subView is clicked.
How to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我自己得到了答案......但感谢其他人在这方面帮助我,
这是
I got the answer myself...but thanks other which helped me on this
here it is
试试这个
Try this
您应该创建 UIView 的子类(或创建类别)并覆盖
将消息重定向到适当的委托的位置。
You should create a subclass (or create a category) of UIView and override the
where redirect the message to the appropriate delegate.
像这样你可以发现视图或子视图被触摸
like this you can find view or subview is touched
这是一个不带多点触控的 swift3 版本:
Heres a swift3 version without multitouch:
你尝试过吗
Did u try