在iOS的表格视图单元格中显示集合视图的问题

时间:2019-06-14 16:00:00

标签: ios swift uitableview uicollectionview

我有一个表视图,我已经在单元格中放置了一个集合视图,我从API获取数据,并且该数据正在传递给表视图和集合视图,但是当我运行该应用程序时,它因该错误而崩溃,

  

由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'-[Lawon.KnowledgeVC collectionView:numberOfItemsInSection:]:无法识别的选择器已发送到实例0x7fa90af0cbc0

我的表格视图代码,

extension KnowledgeVC : UITableViewDelegate,UITableViewDataSource {

func numberOfSections(in tableView: UITableView) -> Int {
    return categoryArray.count
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return categoryArray.count
}


func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return 35
}

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let headerView = Bundle.main.loadNibNamed("KnowledgeHeaderTVC", owner: self, options: nil)?.first as! KnowledgeHeaderTVC

    headerView.categoryNameLbl.text = categoryArray[section].catName
    headerView.articlesLbl.text = "\(categoryArray[section].blogArray.count)" + "articles"

    return headerView
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = knowledgeTableView.dequeueReusableCell(withIdentifier: "KnowledgeCell", for: indexPath) as! KnowledgeDetailTVC

    cell.categoryArray = categoryArray

    return cell
 }
}

这是我的表视图单元格类,在这里我有疯狂的出口用于收集视图并在其中填充数据并调用其委托和数据源,

class KnowledgeDetailTVC: UITableViewCell,UICollectionViewDelegate, UICollectionViewDataSource {

@IBOutlet weak var categoryCollectionView : UICollectionView!
var categoryArray = [Category]()

override func awakeFromNib() {
    super.awakeFromNib()

    self.categoryCollectionView.reloadData()
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    print(categoryArray[section].blogArray.count)
    return categoryArray[section].blogArray.count
}

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

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "familyCell", for: indexPath) as! FamilyCVC

    cell.categoryLbl.text = categoryArray[indexPath.section].blogArray[indexPath.row].articleTitle
    let imageUrl = categoryArray[indexPath.section].blogArray[indexPath.row].imageUrl!
    print(imageUrl)
    cell.categoryImage.sd_setImage(with: URL(string: imageUrl), placeholderImage: UIImage(named: "person.jpeg"))
    //            cell.bgView.layer.masksToBounds = true
    //            cell.bgView.layer.shadowColor = UIColor.black.cgColor
    //            cell.bgView.layer.shadowOpacity = 3
    //            cell.bgView.layer.shadowOffset = CGSize(width: -1, height: 1)
    //            cell.bgView.layer.shadowRadius = 2
    //            cell.bgView.layer.shouldRasterize = true

    return cell
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {

}

}

1 个答案:

答案 0 :(得分:1)

您可以在实现位于单元格内部的情况下,将原型单元格中collectionView的委托和数据源设置为IB中的KnowledgeVC,但是您应该在awakeFromNib

中进行设置
self.categoryCollectionView.delegate = self
self.categoryCollectionView.dataSource = self
self.categoryCollectionView.reloadData()

另外,最好在cellForRowAt内刷新它,以避免出队问题

cell.categoryArray = categoryArray
cell.categoryCollectionView.reloadData()
  

在这种情况下不会引发编译时错误,这是在IB中设置委托和数据源的大问题