在Appstore屏幕截图部分,只是想知道当用户开始横向分页截图时,有人会如何实现Apple在屏幕截图边缘自动向下滚动的方式?
他们使用动画吗?你会怎么做?
谢谢!
答案 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];