-2

Appstore のスクリーン ショットのセクションで、ユーザーがスクリーンショットを水平方向にページングし始めたときに、Apple がスクリーン ショットの端で自動的に下にスクロールする方法を誰かがどのように実装するのでしょうか?

彼らはアニメーションを使用しましたか?どのようにしますか?

ありがとう!

4

1 に答える 1

1

They probably use the UIScrollView method:

- (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated

or the UIScrollView method:

- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated

When the horizontal scroll view's delegate method

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

gets called, figure out the rect or point you want, and then do:

[theVerticalScrollView scrollRectToVisible:theRectYouWant animated:YES];

or

[theVerticalScrollView setContentOffset:thePointYouWant animated:YES];
于 2012-09-15T14:31:52.217 に答える