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.
我有一个平移手势,它返回用户的当前位置(在 x 和 y 坐标中)。
我也有不同大小的圆圈,它们相互堆叠。
我现在的问题是,是否可以通过 ax,y 坐标找到其中一个圆圈(每个都是 UIView)?或者如何找出用户当前位置的 UIView?
蛮力:
NSArray *allCircle /* UIviews 的集合 */ for(UIView *circle in allCircles){ if(CGRectContainsPoint([圆框], 点)) { // 知道了 !! 休息; } }