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.
如何为 iphone 应用程序指定一个点接收器的位置?
返回给定视图坐标系中接收器的当前位置。
- (CGPoint)locationInView:(UIView *)view
您希望触摸位于其坐标系中的视图对象。处理触摸的自定义视图可以指定 self 以在其自己的坐标系中获取触摸位置。传递 nil 以获取窗口坐标中的触摸位置。
在返回值中指定视图中的位置的点。
此方法返回UITouch对象在指定视图坐标系中的当前位置。因为触摸对象可能已经从另一个视图转发到一个视图,所以此方法执行任何必要的触摸位置到指定视图坐标系的转换。