我想用UIScrollView编写自动循环图像播放器。然后我编码这个方法:
[UIView animateWithDuration:0.5 animations:^{
_scrollView.contentOffset = CGPointMake(_scrollView.contentOffset.x+230, 0);
}];
当我的scrollView具有scrollViewDidScroll委托方法时,此方法运行但不能很好地移动而没有动画。 它有什么问题?所以打扰我。谢谢fisrt。
答案 0 :(得分:0)
你可以写成:
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:totalImageCount target:self selector:@selector(animateImages) userInfo:nil repeats:YES];
- (void)animateImages
{
[scrollView setContentOffset:CGPointMake(scrollView.contentOffset.x + CGRectGetWidth(scrollView.frame), 0.0) animated:YES];
}