如何选择CollectionViewCell内的TableViewCell

时间:2019-08-29 16:37:59

标签: ios swift

我有一个CollectionView,它在水平滚动。我有一个自定义CollectionViewCells,它在一个TableView内部有三个单元格。看起来像这样: [![这里是它的外观示例] [1]] [1]

这是我拥有ViewController的主要CollectionView

extension ViewController: UICollectionViewDataSource {
    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return 1
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return self.viewModel.numberOfItems
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
    {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: ItemCell.reuseIdentifier, for: indexPath) as! ItemCell

        return cell
    }

    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        let selectedItem = self.viewModel.items[indexPath.item]
    }
}

这是包含表视图的 ItemCell 代码

class ItemCell: UICollectionViewCell, UITableViewDelegate, UITableViewDataSource {
    @IBOutlet weak var tableView: UITableView!

    override func awakeFromNib() {
        super.awakeFromNib()
        self.tableView.delegate = self
        self.tableView.dataSource = self
    }
    override func layoutSubviews() {
        super.layoutSubviews()

        self.tableView.allowsMultipleSelection = true
        self.tableView.register(UINib(nibName: "DailySelectionViewCell", bundle: nil), forCellReuseIdentifier: DailySelectionViewCell.reuseIdentifier)
    }

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

    func numberOfSections(in tableView: UITableView) -> Int {
        return 3
    }

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

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 60
    }

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

        switch indexPath.section {
        case 0:
            cell.descriptionLabel.text = "Item1"
        case 1:
            cell.descriptionLabel.text = "Item2"
        default:
            cell.descriptionLabel.text = "Item3"
        }

        return cell
    }

    func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
        let view = UIView(frame: CGRect.zero)
        view.backgroundColor = UIColor.clear
        return view
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    }
}

我想单击CollectionView单元格内的TableView单元格。当我想单击TableViewCell时,触摸仅记录在CollectionViewCell上,而我无法单击CollectionViewCell内的任何表格单元。

1 个答案:

答案 0 :(得分:0)

默认情况下,didSelectRowAt必须起作用。 假设DailySelectionViewCell可能包含一些具有用户交互作用的视图,即从UIControl子类化:UIButtonUIDatePickerUISegmentedControl,依此类推。在这种情况下,didSelectRowAt不起作用,这是正确的行为。