Swift:以编程方式在 UICollectionViewCell 中的 IndexPath 中的多个 UIButton,下一个 addTarget 不单击

Posted

技术标签:

【中文标题】Swift:以编程方式在 UICollectionViewCell 中的 IndexPath 中的多个 UIButton,下一个 addTarget 不单击【英文标题】:Swift: Multiple UIButton in a IndexPath in a UICollectionViewCell programmatically, next addTarget does not click 【发布时间】:2017-09-12 06:49:26 【问题描述】:

我以编程方式在 UICollectionViewCell 的 indexPath 中创建了多个 UIButton。现在我想打印“点击添加到收藏夹”,但点击UIButton 后没有打印任何内容。 UIButton 确实可以查看除addTarget 之外的所有内容,功能未单击。

import UIKit

//**UICollectionViewCell**
class DescriptionCell: UICollectionViewCell, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout 


    override init(frame: CGRect) 
        super.init(frame: frame)


        setupCell()

    

    required init?(coder aDecoder: NSCoder) 
        fatalError("init(coder:) has not been implemented")
    



    lazy var addToCart: UIButton = 

        let btn = UIButton()
        btn.setTitle("Add to favourite", for: .normal)
        btn.isUserInteractionEnabled = true
        btn.setTitleColor(.white, for: .normal)

        btn.backgroundColor = UIColor.orange
        btn.titleLabel?.font = UIFont.boldSystemFont(ofSize: 8)
        btn.titleLabel?.textAlignment = .right

        // addToCart not click
        btn.addTarget(self, action: #selector(addToCartTarget), for: .touchUpInside)

        btn.layer.cornerRadius = 12

        return btn
    ()




    func setupCell() 



        addSubview(addToCart)



        addConstraintsWithFormat("H:|-80-[v0]-80-|", views: addToCart)
             addConstraintsWithFormat("V:|-380-[v0(25)]|", views: addToCart)


    



    func addToCartTarget() 

        print("you clicked add to favourite")
    





【问题讨论】:

@AzmalTech 按钮视图一定有问题,不是 addTarget,请先尝试仅添加简单按钮,然后检查屏幕上的视图是否设计正确 嗨,兄弟,DescriptionCell 被调用了多少次 只调用一次方法并检查是否调用了按钮操作 bro no no 用于测试目的尝试上面的代码只有一次 接下来我想知道一些事情,例如 CollectionViewViewController 上的任何 GestureRecognizer 是否存在,接下来请在代码中设置一些内容,例如设置单元格的背景颜色并检查按钮是否在单元格边界中. 【参考方案1】:

尝试使用如下框架初始化按钮:

let btn = UIButton(frame: CGRect(x: 10, y: 10, width: 50, height: 20))

【讨论】:

UIButton一切正常,点击按钮后addTarget不打印任何东西 我测试了你的代码 sn-p 并且它对我来说工作正常。 对不起!我忘了说“我在 collectionViewCell 的 indexPath 中添加了多个 UIButton” 兄弟!我无法在 collectionViewCell 中使用此按钮添加 pushViewController。但是通过此代码添加了 presentViewController self.window?.rootViewController?.present(ViewController(), animated: true, completion: nil) 您只能将视图控制器推送到导航控制器,navigationController?.pushViewController(activityTimesTVC, animated: true)。为此,您必须将您的视图控制器嵌入到故事板中的导航控制器中。转到编辑器 -> 嵌入 -> 导航控制器。

以上是关于Swift:以编程方式在 UICollectionViewCell 中的 IndexPath 中的多个 UIButton,下一个 addTarget 不单击的主要内容,如果未能解决你的问题,请参考以下文章

如何在 iOS swift 中的 ARSCNView 中显示 uicollection 视图

UICollection 在使用 Swift 3 显示图像时非常慢

Table Cell 中的 UICollection 视图在 Swift 3 中不显示图像

Swift - 如果项目滚动一点,UICollection 快速恢复

如何在IOS中以编程方式滚动UICollectionViewCell?

如何在 Swift 中以编程方式将 UILabel 对象居中?