菜鸟教程小白 发表于 2022-12-12 10:29:34

ios - 在 UICollectionView 选择上选择 UITableView


                                            <p><p>我在 <code>UITableViewCell</code> 中有一个 <code>UICollectionView</code>。当我选择 <code>tableView</code> 行时,我不想调用 <code>UICollectionView</code> 的 <code>didSelectItemAtIndexPath:</code> 方法。相反,我希望 <code>UITableView</code> 的 <code>didSelectRowAtIndexPath:</code> 方法被调用。如何在 <code>didSelectItemAtIndexPath:</code> 中调用 <code>didSelectRowAtIndexPath:</code>?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p> swift3</p>

<p>先设置如下</p>

<pre><code> func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    let parentCell: QMatrixCell? = collectionView.superview?.superview as! QMatrixCell?
    parentCell?.delegate.collectionViewDidSelectedAtCell(cell: parentCell!)
}
</code></pre>

<p>并在包含您的 tableview 的 Controller 中执行以下操作</p>

<pre><code>extension TableViewController: SelectionCell{
func collectionViewDidSelectedAtCell(cell : QMatrixCell){
    let index: IndexPath? = tableView.indexPath(for: cell)
    tableView(tableView, didSelectRowAt: index!);
}
}
protocol SelectionCell {
   func collectionViewDidSelectedAtCell(cell : QMatrixCell);
}
</code></pre>

<p>别忘了在你的 tableView 单元格中设置委托(delegate)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 UICollectionView 选择上选择 UITableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35448927/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35448927/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 UICollectionView 选择上选择 UITableView