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.
如何在 iOS 的视图中获得第二次触摸的位置?我正在使用 UITouch,如果我在做捏合手势,我只知道如何获取第一根手指的位置。我通过按住选项按钮并在视图上拖动来在模拟器中进行捏合手势。
我不知道您是在使用手势识别器还是试图对 UIResponder 采取行动。
但是在任何一种情况下,委托方法都被处理一个 NSSet *touches,这个集合可以包含多个对象。
因此,您应该枚举该集合以获取所有内容。