标签: swift uikit uibezierpath cgpoint
是否有任何方法可以确定目标CGPoint(来自用户触摸)是否在任何 UIBezierPath对象中?
CGPoint
UIBezierPath
我有一个室内地图应用程序。我所有的房间都是UIBezierPath个对象。我需要检测用户是否接触到其中一个?
我知道UIBezierPath.contains(_:)存在,如果我有一个UIBezierPath对象,这会很好用,但我可能有10个,20个甚至100个UIBezierPath个对象。 如何有效地检查哪个路径实际包含该点?
UIBezierPath.contains(_:)