我是Swift应用程序开发的新手,我想知道如何根据使用Swift点击Image
的位置添加触摸事件。我需要获取图像被点击的区域的坐标。
答案 0 :(得分:3)
您需要在图像视图上使用点击手势识别器,还需要将用户交互属性设置为启用。然后你可以从手势识别器的方法中获得点。这是一些快速代码:
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: Selector("tapAction:"))
self.imageView.userInteractionEnabled = true
self.imageView.addGestureRecognizer(tapGestureRecognizer)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tapAction(sender: UITapGestureRecognizer) {
let touchPoint = sender.locationInView(self.imageView) // Change to whatever view you want the point for
}
}
答案 1 :(得分:0)
2017年更新:
现在不推荐使用选择器(字符串)。可以使用新语法 #selector 。
此外,不需要结尾处的冒号。
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(tapAction))