节点 UIView OnSelect 函数
我有一个Node.m,它是UIView,我还有Gridview.m,Gridview由许多node.m组成。在 node.m 内部有一个函数,当用户触摸 Gridview 内的节点之一时,该函数就会被激活。
Node.m 内部
- (void) onSelect:(id)sender
那么,这是否意味着 onSelect 是 UIView 的固有函数?如果没有,onSelect 函数如何与触摸事件关联?
I have a Node.m which is UIView, and I also have Gridview.m and Gridview consists of many node.m. Inside the node.m there's a function which is activated when the user touches one of the nodes inside the Gridview.
Inside Node.m
- (void) onSelect:(id)sender
So, does that mean the onSelect is an innate function of UIView? If not, how does the onSelect function get associated with the touch event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在整个项目(command-shift-f)中搜索“onSelect”以查看它被调用的位置。
Search your entire project (command-shift-f) for 'onSelect' to see where it is being called.