菜鸟教程小白 发表于 2022-12-13 02:35:21

iphone - 与另一个 UITableview 同时滚动其他 UITableview


                                            <p><p>我有一个相当复杂的观点。我基本上有以下这些</p>

<p> <img src="/image/4zVWT.png" alt="enter image description here"/> </p>

<p>你可以看到我有一个<code>vertical tableview</code>。在每个单元格中,我都有一个 <code>horizo​​ntal tableview</code>。我现在想要做的是,当我滚动一个 <code>horizo​​ntal tableview</code> 时,每个其他水平 tableview 也应该滚动。 </p>

<p>在我的垂直 tableviewCell 的子类中,我有以下内容。</p>

<pre><code>for(HorizontalTableCell *cell in mainTable.subviews){
      if(]){
            for(UITableView *cellTable in cell.subviews){
                if(]){
                  NSLog(@&#34;cell table is table %@&#34;,cellTable);
                  ;
                }
            }
      }
    }
</code></pre>

<p>但这不能正常工作。有人可以帮我解决这个问题吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您将需要使用 ScrollView 委托(delegate)方法。我建议发布一个通知,然后像这样在单元格中提取它......</p>

<pre><code>- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    [ postNotificationName:@&#34;CellScrolledHorizontally&#34; object:self.tableView];
}
</code></pre>

<p>然后在水平单元格中您可以观察到通知。</p>

<pre><code>[ addObserver:self selector:@selector(scrolled:) name:@&#34;CellScrolledHorizontally&#34; object:nil];

- (void)scrolled:(NSNotification *)notification
{
    UITableView *notificationTableView = notification.object;

    if (notificationTableView == self.tableView)
      return;

    ;
}
</code></pre>

<p>或者,使用 <code>UICollectionView</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 与另一个 UITableview 同时滚动其他 UITableview,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16583186/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16583186/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 与另一个 UITableview 同时滚动其他 UITableview