收集视图单元格内部的索引路径



我在表视图单元格中嵌套了一个UicollectionView。如何获得CollectionView单元格水平行的索引路径?我试图使用

        let index = cell.tag
        print(index as Any) 

打印选择哪个索引,无论我选择哪种单元格,它都不知道它将打印为零的值。我很抱歉,我没有收集意见的经验。任何帮助深表感谢。谢谢。

您应该设计一个协议处理嵌套的UIELEMENT交互。它使您的头脑更加清晰,并分配更好的地址

class ViewwithTable:UIViewController,UITableViewDataSource,collectionCell_delegate{
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 1
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "temp", for: indexPath) as! NestedViewwithCollection
        cell.delegate = self
        return cell
    }
    func didPressed(indexPath: IndexPath) {
        //the pressed index!
    }
}
class NestedViewwithCollection:UITableViewCell,UICollectionViewDataSource,UICollectionViewDelegate{
    var delegate:collectionCell_delegate?
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        return UICollectionViewCell()
    }
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 1
    }
    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        if let del = delegate{
            del.didPressed(indexPath: indexPath)
        }
    }
}
protocol collectionCell_delegate {
    func didPressed(indexPath:IndexPath)
}

将此代码用于tableview

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
    return model.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)
    return cell
}
override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) 
{
    guard let tableViewCell = cell as? TableViewCell else { return }
    tableViewCell.setCollectionViewDataSourceDelegate(self, forRow: indexPath.row)
}

收集视图

extension ViewController: UICollectionViewDelegate,UICollectionViewDataSource 
{
    func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return model[collectionView.tag].count
}
func collectionView(collectionView: UICollectionView, 
    cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell 
{
    let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", 
        forIndexPath: indexPath)
    cell.backgroundColor = model[collectionView.tag][indexPath.item]
    return cell
}

相关内容

  • 没有找到相关文章

最新更新