菜鸟教程小白 发表于 2022-12-13 11:34:04

ios - 以编程方式在 UITableViewCell 中选择自身


                                            <p><p>我有一个 UITableViewCell,里面有一个 UICollectionViewCell。我希望用户能够滚动 UICollectionViewCell 但是当他点击 UITableViewCell 内的任何位置时,我需要选择它。当前,当用户在 UICollectionViewCell 之外点击 UITableViewCell 时,它会被正确选择,但是当他在 UICollectionViewCell 内部点击时,什么也没有发生。我的想法是在 UITableViewCell 内实现 collectionView: didSelectItemAtIndexPath: 方法并以编程方式触发“ self 选择”,但我似乎找不到这样做的方法。如果我将对表的引用和单元格的 indexPath 存储在自身内部,我可能会这样做,但我觉得这将是一种不好的做法。如何正确执行此操作?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我的猜测是 UITableViewCell 的 didSelectRowAtIndexPath: 阻塞了 UICollectionViewCell 的 collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:</p>

<p>我会首先检查是否是这种情况,方法是在选择 UICollectionViewCell 时为 UITableViewCell 的 didSelectRowAtIndexPath: 设置断点。</p>

<p>如果是这种情况,这个答案可能会对您有所帮助(也附带一个很好的教程):<a href="https://stackoverflow.com/a/17120673/5465258" rel="noreferrer noopener nofollow">https://stackoverflow.com/a/17120673/5465258</a> </p>

<p>我认为他们的问题与您的问题相似。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 以编程方式在 UITableViewCell 中选择自身,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33249283/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33249283/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 以编程方式在 UITableViewCell 中选择自身