在Swift中获取多次触摸的坐标

在Swift中获取多次触摸的坐标,第1张

在Swift中获取多次触摸坐标

更新为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)    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4917681.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存