繁体   English   中英

在视图控制器Swift的UITableView中加载多个UICollectionView

[英]Load multiple UICollectionView in UITableView in view controller Swift

我正在构建一个iOS应用程序,其中UITableView中有4种不同的UICollectionViewn设计。

UICollectionViewCell类名称是:DealCollectionViewCell,FilterCollectionViewCell,ComboCollectionViewCell,BusinessCollectionViewCell

UITableViewCell类名称是:DealTableViewCell,BusinessTableViewCell,FilterTableViewCell,ComboTableViewCell

下面是UIViewController类代码(类名HomeViewControllerr)

类扩展

UIViewController, UITableViewDelegate, UITableViewDataSource, UICollectionViewDelegate, UICollectionViewDataSource

对于UITableView

func tableView(_ tableView:UITableView,numberOfRowsInSection部分:Int)-> Int {return 4}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    if  indexPath.row == 0
    {
        let cell = tableView.dequeueReusableCell(withIdentifier: "DealTableViewCellId") as! DealTableViewCell

        return cell
    }
    else if indexPath.row == 1
    {
        let cell = tableView.dequeueReusableCell(withIdentifier: "FilterTableViewCellId") as! FilterTableViewCell

        return cell
    }
    else if indexPath.row == 2
    {
        let cell = tableView.dequeueReusableCell(withIdentifier: "ComboTableViewCellId") as! ComboTableViewCell

        return cell
    }
    else
    {
        let cell = tableView.dequeueReusableCell(withIdentifier: "BusinessTableViewCellId") as! BusinessTableViewCell

        return cell
    }
}

对于UICollectionView

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
{
    return dealImageArray.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "DealCollectionViewCellId", for: indexPath) as? DealCollectionViewCell

    return cell!

}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "ProductViewControllerId") as! ProductViewController
    self.present(nextViewController, animated:true, completion:nil)
    //self.navigationController?.pushViewController(nextViewController, animated: true)
}

现在,我想在cellForItemAt函数中添加多个UICollectionViewCell。 如下所示(当我不使用UITableView时,我已经做到了)

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    if  (collectionView == dealCollectionView)
    {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "DealCollectionViewCellId", for: indexPath) as? DealCollectionViewCell

        return cell!
    }
    else if  (collectionView == comboCollectionView)
    {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ComboColllectionViewCellId", for: indexPath) as? ComboColllectionViewCell

        return cell!
    }
    else
    {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "BusinessCollectionViewCell", for: indexPath) as? BusinessCollectionViewCell

        return cell!
    }
}
 extension HomeViewController : UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 4
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    if indexPath.row == 0 {
        let cell = tableView.dequeueReusableCell(withIdentifier: "DealTableViewCell", for: indexPath) as! DealTableViewCell
        cell.DealCollectionView.dataSource = self
        cell.DealCollectionView.delegate = self
        cell.DealCollectionView.tag = 10101
        return cell
    } else if indexPath.row == 1 {
        let cell = tableView.dequeueReusableCell(withIdentifier: "BusinessTableViewCell", for: indexPath) as! BusinessTableViewCell
        cell.BusinessCollectionView.dataSource = self
        cell.BusinessCollectionView.delegate = self
        cell.BusinessCollectionView.tag = 10102
        return cell
    } else if indexPath.row == 2 {
        let cell = tableView.dequeueReusableCell(withIdentifier: "FilterTableViewCell", for: indexPath) as! FilterTableViewCell
        cell.FilterCollectionView.dataSource = self
        cell.FilterCollectionView.delegate = self
        cell.FilterCollectionView.tag = 10103
        return cell
    } else {
        let cell = tableView.dequeueReusableCell(withIdentifier: "ComboTableViewCell", for: indexPath) as! ComboTableViewCell
        cell.ComboCollectionView.dataSource = self
        cell.ComboCollectionView.delegate = self
        cell.ComboCollectionView.tag = 10104
        return cell
    }
}
}

将集合视图添加到每个tableview单元格,并在tableview单元格中设置委托

extension HomeViewController : UICollectionViewDelegate, UICollectionViewDataSource {

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    if collectionView.tag == 10101 {
        return 3
    } else if collectionView.tag == 10102 {
        return 3
    } else if collectionView.tag == 10103 {
        return 3
    } else if collectionView.tag == 10104 {
        return 3
    }
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    if collectionView.tag == 10101 {
        let cell = collectionView.dequeueReusableCell(withIdentifier: "DealCollectionViewCell", for: indexPath) as! DealCollectionViewCell

        return cell
    } else if collectionView.tag == 10102 {
        let cell = collectionView.dequeueReusableCell(withIdentifier: "BusinessCollectionViewCell", for: indexPath) as! BusinessCollectionViewCell

        return cell
    } else if collectionView.tag == 10103 {
        let cell = collectionView.dequeueReusableCell(withIdentifier: "FilterCollectionViewCell", for: indexPath) as! FilterCollectionViewCell

        return cell
    } else if collectionView.tag == 10104 {
        let cell = collectionView.dequeueReusableCell(withIdentifier: "ComboCollectionViewCell", for: indexPath) as! ComboCollectionViewCell

        return cell
    }

    return UICollectionViewCell()
}
}

用于重新加载使用中的collectionView

if let cell = self.tableView.cellForRow(at: IndexPath(row: i, section: 0)) as? tableViewCell {
cell.collectionView.reloadData()
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM