override func touchesMoved(touches: NSSet,withEvent event: UIEvent) { println("touchesMoved started") println(touches.count) for touch in touches { println(touch.locationInView(self.view)) } println("touchesMoved end") }
默认情况下,touches里面只能获得一个点的坐标。
这是因为ios设备的多点触摸是需要开启的,默认只有一个,开启代码如下
<pre name="code" class="objc"> override func viewDidLoad() { super.viewDidLoad() //设置多点触摸有效 self.view.multipleTouchEnabled = true }