どうってことでもないですが、大事なことなので忘れないよう、書き留めときます
ViewController.swift
class ViewController: UIViewController {
var tapLocation: CGPoint = CGPoint()
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
// タッチイベントを取得する
let touch = touches.first
// タップした座標を取得する
tapLocation = touch!.locationInView(self.view)
}
}