gpt4 book ai didi

ios - 从 touchesEnded 获取图像名称

转载 作者:行者123 更新时间:2023-11-28 08:03:16 27 4
gpt4 key购买 nike

在我的 Storyboard中,我有一些图像是“启用用户交互”的。在 UIViewController 中,我覆盖了 touchesEnded 函数。

override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesEnded(touches, with: event)
}

我可以得到在这个函数中被点击的图像的名称吗?我不想 @IBOutlet 图片。

最佳答案

我很确定这不可能完全按照您的意愿进行。 ImageView 不保留它们从中加载图像的文件,只保留图像数据本身。但我假设您在 IB 中设置图像名称并尝试在触摸事件后获取该名称,在这种情况下,您可以在元素的恢复 ID 中设置图像名称并通过触摸元素的 restorationIdentifier 属性检索名称。

你可以这样获取被触摸的元素:

override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
if let touch: UITouch = touches.first {
let location = touch.location(in: self.view)
let touchedView = self.view.hitTest(location, with: event)

print(touchedView.restorationIdentifier)
}
}

请注意,如果要这样做,您必须两次设置图像文件名,并且在进行更改时将值更改两次。你正在尝试的东西有糟糕设计的味道,所以如果有其他方法,我会采用它。

关于ios - 从 touchesEnded 获取图像名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45959826/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com