作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
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/
我是一名优秀的程序员,十分优秀!