我想获取用户坐标并将其打印在标签中。
我该怎么做?我想在Swift中做到这一点。
再见 亨利
答案 0 :(得分:-1)
我猜您不知道如何获取坐标!?
您应该先创建一个imageView
,然后在您的ViewController
中输入:
@IBOutlet weak var imageView: UIImageView!
var coordinates = CGPoint.zero
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if let touch = touches.first{
coordinates = touch.location(in: imageView)
print(coordinates)
textLabel.text = "\(coordinates)"
}
}
然后您将打印坐标并将其放入标签中。