如何同时滚动三个UIScrollView?

时间:2012-12-09 13:54:34

标签: ios uiscrollview

我正在创建一个应用程序,即课程表。我想在窗口中显示表格。像这样:

the upper represents week, the left represents timeline and  bottom-left represents courses

  

上部代表星期,左侧代表时间轴和   左下角代表课程

因为UIImageView太大而iPhone窗口无法显示它,所以我使用三个UIScrollViews来表示课程表。我的想法是手动移动左下角UIScrollView,同时自动滚动三个UIScrollViews。但我无法实现它。

1 个答案:

答案 0 :(得分:0)

也许:

//grab scroll offset of scrolled uiscrollview
CGPoint scrollOffsetOne = self.scrollViewOne.contentOffset;

//apply that offset to the others
self.scrollViewTwo.contentOffset = scrollOffsetOne;
self.scrollViewThree.contentOffset = scrollOffsetOne;