所以我有这个uiscrollerview ...每次5秒钟,scrollview应该向上移动。

setcontentoffset正在工作,但是没有动画。像它应该缓慢上升。

我的下面的代码

CGPoint bottomOffset = CGPointMake(0, newYLocationForScrollView);


[scroll setContentOffset:bottomOffset animated:YES];

提前致谢

最佳答案

[UIView animationWithDuration0.3f ^(void) {

// code to do the transition

}];


UIView Reference

[scrollView setContentOffset:offset animated:YES];


UIScrollView Reference

关于ios - 如何在 View 上制作滚动动画,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17702877/

10-12 06:19