gpt4 book ai didi

ios - 发送到实例的 UIButton 无法识别的选择器

转载 作者:搜寻专家 更新时间:2023-11-01 07:12:56 24 4
gpt4 key购买 nike

<分区>

我正在使用带有 UICollectionView 的自定义单元格,我需要以编程方式为每个单元格定义 UIButton。

override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellId", for: indexPath) as! ClinicListCell
cell.title.text = clinicNames[indexPath.row]
cell.subTitle.text = clinicSubs[indexPath.row]
cell.backgroundImageView.image = UIImage(named: clinicImages[indexPath.row])
cell.profileBtn.tag = indexPath.row
cell.profileBtn.addTarget(self, action: Selector(("profileBtnClicked:")), for: .touchUpInside)
return cell
}

我在同一个类中定义了以下选择器方法。

class func profileBtnClicked(sender:UIButton) {
print("Selected")
}

我已经尝试从选择器方法中删除 class/static,但它总是给我 unrecognized selector sent to instance 错误,我哪里出错了?

谢谢。

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