App Store截图自动滚动效果

时间:2012-09-15 14:25:35

标签: ios

在Appstore屏幕截图部分,只是想知道当用户开始横向分页截图时,有人会如何实现Apple在屏幕截图边缘自动向下滚动的方式?

他们使用动画吗?你会怎么做?

谢谢!

1 个答案:

答案 0 :(得分:1)

他们可能使用UIScrollView方法:

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

或UIScrollView方法:

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

当水平滚动视图的委托方法

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

被调用,找出你想要的矩形或点,然后执行:

[theVerticalScrollView scrollRectToVisible:theRectYouWant animated:YES];

[theVerticalScrollView setContentOffset:thePointYouWant animated:YES];