0

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

上代表周,左代表时间线,左下代表课程

上代表周,左代表时间线,左下代表课程

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

4

1 回答 1

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;
于 2012-12-09T17:45:54.860 回答