【发布时间】:2019-09-04 05:31:54
【问题描述】:
我有一个UICollectionViewDataSource 定义如下。
class MyDataSource : NSObject, UICollectionViewDataSource {
var tables : [Table]?
...
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
if let cell: TableCVCell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as? TableCVCell {
let row = indexPath.row
let table = tables![row]
cell.isUserInteractionEnabled = true
if table.type == "book" {
cell.actionButton.table = table
cell.actionButton.addTarget(self, action: #selector(btnClicked(sender:)), for: .touchUpInside)
}
return cell
}
return UICollectionViewCell()
}
@objc func btnClicked(sender : ActionButton) {
print("clicked")
}
}
我正在尝试为我的actionButton 分配一个目标,但是当我单击它时没有任何反应。我确保为单元格和actionButton 启用isUserInteractionEnabled。
编辑:
MyDataSource 在我的UIView 定义中使用:
class MyView: UIView {
var collectionView : UICollectionView!
let flowLayout = UICollectionViewFlowLayout()
let cvDelegate = MYDelegate()
let dataSource = MyDataSource()
override init(frame: CGRect) {
super.init(frame: frame)
setupCollectionView()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
setupCollectionView()
}
func setupCollectionView() {
flowLayout.scrollDirection = .vertical
collectionView = UICollectionView(frame: CGRect(x: 0, y: 0, width: screenWidth, height: screenHeight), collectionViewLayout: flowLayout)
collectionView.delegate = cvDelegate
collectionView.dataSource = dataSource
collectionView.isUserInteractionEnabled = false
collectionView.register(TableCVCell.self, forCellWithReuseIdentifier: "cell")
}
最后:
MyViewController : UIViewController {
override func loadView() {
let view = MyView()
self.view = view
}
}
【问题讨论】:
-
展示你如何使用这个
MyDataSource类。您是否验证了对addTarget的调用实际上已接通? -
@rmaddy 我做了 - 用断点测试了它 - 另请参阅我对 Sh_Khan 的回答的评论
标签: ios swift uicollectionview uibutton uicollectionviewcell