gpt4 book ai didi

ios - 为什么 UICollectionView 的 didSelect 方法不起作用?

转载 作者:搜寻专家 更新时间:2023-10-31 08:22:38 28 4
gpt4 key购买 nike

我已经以编程方式创建了我的 UICollectionView,在这种情况下,我的 didSelectItemAtIndexPath 方法根本没有调用。

let collectionView = UICollectionView(frame: CGRect(x: 0, y: 0, width: CGRectGetWidth(self.view.frame), height: 360), collectionViewLayout: layout)
collectionView.delegate = self
collectionView.dataSource = self
collectionView.userInteractionEnabled = true

那么,什么是问题?为什么当我点击单元格时没有收到响应?

func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
print("Selected Cell: \(indexPath.row)")
}

最佳答案

我知道这可能会晚了,但是为了功能目的,CollectionView[didSelectItem] 不响应触摸可能是因为您还启用了 addGestureRecognizer所以检查你是否像这样在 CollectionView 上设置了手势识别器 collectionView?.addGestureRecognizer(tapGestRecognizer)

关于ios - 为什么 UICollectionView 的 didSelect 方法不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39036197/

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