我在数组中有多个图像和一个滚动视图,所有图像都应该自动滚动,当我单击图像时,它应该导航到其他视图并显示其详细信息。完成从 0 滚动到数组末尾的图像后,它应该再次加载第一个图像,即 0。在动画中我有很多问题,请帮助我....
我正在使用此代码
[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
- (void) onTimer {
// Updates the variable h, adding 100 (put your own value here!)
h += 100;
//This makes the scrollView scroll to the desired position
yourScrollView.contentOffset = CGPointMake(0, h);
}