更新为Swift 4和Xpre 9(2017年10月8日)
首先, 请记住 通过设置 启用多点触控事件
self.view.isMultipleTouchEnabled = true
在您
UIViewController的代码中,或在Xpre中使用相应的故事板选项:
否则,您总是可以单动一下
touchesBegan(请参阅此处的文档)。
然后,在内部
touchesBegan,遍历一组触摸以获取其坐标:
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) { for touch in touches { let location = touch.location(in: self.view) print(location) }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)