美文网首页
tableview的纵向竖向联动

tableview的纵向竖向联动

作者: 张麒麟 | 来源:发表于2017-03-24 15:54 被阅读36次
    1.png
    联动效果:
    实现tableviewA滑动的同时tableviewB跟着滑动,tableviewB滑动的同时tableviewA跟着滑动,tablviewB可以实现左右滑动。
    方法:
    在scrollDid里建立tableviewA和tableviewB的关系。
    在滑动tableviewA时候 关联tableviewB ,tablviewB的偏移Y与tableviewA相同。
    //建立titleTbaleview和inforTableview的滑动关联
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        if (scrollView == tablviewA) {
            [tableviewB setContentOffset:CGPointMake(tablviewB.contentOffset.x, tableviewA.contentOffset.y)];
        }
        if (scrollView ==tablviewB) {
            [tablviewA setContentOffset:CGPointMake(0, tablviewB.contentOffset.y)];
        }
    }
    
    

    相关文章

      网友评论

          本文标题:tableview的纵向竖向联动

          本文链接:https://www.haomeiwen.com/subject/ntjfottx.html