gpt4 book ai didi

ios - 从 UITapGestureRecognizer 访问 subview

转载 作者:行者123 更新时间:2023-11-28 11:39:18 42 4
gpt4 key购买 nike

我有一个 Collection View ,其中包含基于数组填充的单元格。每个单元格都有一个 UIImageView 和一个 UILabel。每次点击 Cell View 本身时,我都希望能够更新 UILabel 中的文本。我的点击手势工作正常,我可以打印出发件人信息并访问发件人 View ,甚至获得恢复标识符,但我似乎无法访问该单元格中的“myImage”或“myLabel” subview 窃听。

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! CardCell

cell.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tap)))

let railroadName = railroadNames[indexPath.item]
cell.myImage.image = #imageLiteral(resourceName:railroadName)
cell.myImage.clipsToBounds = true
cell.myImage.layer.cornerRadius = 8
cell.restorationIdentifier = railroadName

cell.myLabel.isHidden = true
cell.myLabel.text = "2"
cell.myLabel.layer.backgroundColor = UIColor(red:0.25, green:0.52, blue:0.96, alpha:1.0).cgColor
cell.myLabel.layer.cornerRadius = 18
cell.myLabel.textColor = UIColor.white

return cell
}

@objc func tap(_ sender: UITapGestureRecognizer) {
//print(sender)
//print(sender.view?.restorationIdentifier)
}

无法访问 subview 。想要从“myLabel”中获取当前文本并在每次点击时将计数增加 1。

最佳答案

您可以使用以下代码获取单元格的标签文本。但我坚持要你在 railroadNames 数组中管理它。因此,您可以将标签文本保存在数组对象的字段中,并可以使用下面的代码使用索引路径获取该字段值,并根据您的要求执行操作。然后您可以重新加载该特定单元格以在 tableview 上显示效果。

此外,您应该使用 didSelectItemAt 方法来获取选择单元格事件。如果没有必要,请使用 UITapGestureRecognizer

@objc func tap(_ sender: UITapGestureRecognizer) {

//Get Collection view cell indexpath on based of location of tap gesture
let cellPosition = sender.location(in: self.collectionView)
guard let indexPath = self.collectionView.indexPathForItem(at: cellPosition) else{
print("Indexpath not found")
return
}

//Get Ceollection view cell
guard let cell = self.collectionView.cellForItem(at: indexPath) as? CellMainCategoryList else{
print("Could't found cell")
return
}

//Get String of label of collection view cell
let strMyLable = cell. myLabel.text
//you can process addition on based of your requirement here by getting Int from above string.
}

除了上面的代码,您还可以像下面的代码一样管理它:

@objc func tap(_ sender: UITapGestureRecognizer) {

let cellPosition = sender.location(in: self.collectionViewCategaries)
guard let indexPath = self.collectionViewCategaries.indexPathForItem(at: cellPosition) else{
print("Indexpath not found")
return
}
let railroadName = railroadNames[indexPath.item]
let myLableText = railroadName.myLabelValue
//update value
railroadName.myLabelValue = "2"

self.collectionView.reloadItems(at: [indexPath])
}

希望这对您有所帮助。

关于ios - 从 UITapGestureRecognizer 访问 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54167534/

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