我正在创建一个应用程序,即课程表。我想在窗口中显示表格。像这样:
上部代表星期,左侧代表时间轴和 左下角代表课程
因为UIImageView
太大而iPhone窗口无法显示它,所以我使用三个UIScrollViews
来表示课程表。我的想法是手动移动左下角UIScrollView
,同时自动滚动三个UIScrollViews
。但我无法实现它。
答案 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;