• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:35:21 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

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

enter image description here

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

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

  for(HorizontalTableCell *cell in mainTable.subviews){
        if([cell isKindOfClass:[HorizontalTableCell class]]){
            for(UITableView *cellTable in cell.subviews){
                if([cellTable isKindOfClass:[UITableView class]]){
                    NSLog(@"cell table is table %@",cellTable);
                    [cellTable setContentOffset:CGPointMake(scrollView.contentOffset.x, 0) animated:NO];
                }
            }
        }
    }

但这不能正常工作。有人可以帮我解决这个问题吗?



Best Answer-推荐答案


您将需要使用 ScrollView 委托(delegate)方法。我建议发布一个通知,然后像这样在单元格中提取它......

- (void)scrollViewDidScrollUIScrollView *)scrollView
{
    [[NSNotificationCenter defaultCenter] postNotificationName"CellScrolledHorizontally" object:self.tableView];
}

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

[[NSNotificationCenter defaultCenter] addObserver:self selectorselector(scrolled name"CellScrolledHorizontally" object:nil];

- (void)scrolledNSNotification *)notification 
{ 
    UITableView *notificationTableView = notification.object; 

    if (notificationTableView == self.tableView) 
        return; 

    [self.tableView setContentOffset:notificationTableView.contentOffset]; 
}

或者,使用 UICollectionView

关于iphone - 与另一个 UITableview 同时滚动其他 UITableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16583186/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap