gpt4 book ai didi

swift - 如何在 Swift 中使用 UILongPressGestureRecognizer 通过标签属性传递 indexPath.row?

转载 作者:行者123 更新时间:2023-11-28 08:38:48 31 4
gpt4 key购买 nike

这是我的代码:

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

let cell = collectionView.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as! imageUserCell

let coolGesture = UILongPressGestureRecognizer(target: self, action: #selector(detailedPerson.makeItCoolAction(_:)))

coolGesture.minimumPressDuration = 0.5
coolGesture.view?.tag = 4

cell.addGestureRecognizer(coolGesture)

这是函数代码:

   func makeItCoolAction(sender: UIGestureRecognizer){

print(sender.view?.tag)
print("Photo cooled")

}

控制台打印相同的值:0,这是默认值。我强烈需要将 indexPath.row 值传递给 makeItCoolAction,但我看到 UIGestureRecognizer 没有 tag 属性,但是 .view 属性有它,正如您在代码中看到的那样。

我已将 makeItCoolAction 发送器从 UILongPressGestureRecognizer 更改为 UIGestureRecogizer,它仍然继续打印 0 值。

最佳答案

此时 View 为零:

coolGesture.view?.tag = 4

尝试在添加手势后设置点击,它具有如下 View :

cell.addGestureRecognizer(coolGesture)
coolGesture.view?.tag = 4

关于swift - 如何在 Swift 中使用 UILongPressGestureRecognizer 通过标签属性传递 indexPath.row?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36899362/

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