如何在swift 3中的tableview单元格中添加带自定义视图的collectionView?

时间:2017-07-11 06:24:31

标签: ios swift uitableview swift3 uicollectionview

我需要在tableview单元格的视图中添加一个集合视图。 下图描述了我需要什么。

tableView
- tableViewCell
 - contentView
     -monthView
     -detailedView
         -collectionView
           - collection Cell
               -detailedImageView

我在detailedView(tableview单元格第二个视图)中添加了collectionview。但我不知道我是否需要创建collectionView cell.swift文件以及如何完成整个过程?

1 个答案:

答案 0 :(得分:0)

首先,您需要创建collectionView单元文件。下面是一些示例代码,首先为collectionViews创建contentOffset数组。

var contentOffsets = [Int : CGFloat]()

然后您可以将tag-s设置为每个collectionViews以识别调用哪个collectionView委托方法

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: booksListCellId) as! BooksListCell
        cell.collectionView.tag = indexPath.row

        return cell
}

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        let tableCell = cell as! BooksListCell
        tableCell.collectionView.dataSource = self
        tableCell.collectionView.delegate = self
        tableCell.collectionView.reloadData()
        if let offset = contentOffsets[tableCell.collectionView.tag] {
            tableCell.collectionView.setContentOffset(CGPoint(x: offset, y: 0), animated: false)
        }
}

func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        let tableCell = cell as! BooksListCell
        contentOffsets[tableCell.collectionView.tag] = tableCell.collectionView.contentOffset.x
}

在ViewController中实现collectionView dataSource和委托方法,其中包含tableView

以下tutorial可能会对您有所帮助。