Appstore のスクリーン ショットのセクションで、ユーザーがスクリーンショットを水平方向にページングし始めたときに、Apple がスクリーン ショットの端で自動的に下にスクロールする方法を誰かがどのように実装するのでしょうか?
彼らはアニメーションを使用しましたか?どのようにしますか?
ありがとう!
Appstore のスクリーン ショットのセクションで、ユーザーがスクリーンショットを水平方向にページングし始めたときに、Apple がスクリーン ショットの端で自動的に下にスクロールする方法を誰かがどのように実装するのでしょうか?
彼らはアニメーションを使用しましたか?どのようにしますか?
ありがとう!
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];