Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我实现了一个代码来在视图中的许多动画对象之间触摸和拖动一个对象,它可以工作,现在我需要知道我在视图中触摸了哪个对象。
每个视图都有一个NSInteger标签属性,它可以在类似 Interface Builder 的 UI 中设置,也可以在如下代码中设置:
NSInteger
UIView *view = [[UIView alloc] init]; view.tag = 20121221;
您可以通过以下方式获取与标签关联的视图
[parentView viewWithTag:20121221];