TimeIntervalの後に、scrollviewを自動的にスクロール(ページング)するコードを設定しました。ここで、スクロールビューのアニメーションを4回停止します。誰かが私にそれをする方法を教えてもらえますか?
これは私のコードです。
[NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
- (void) onTimer {
// Updates the variable h, adding 320
abc += 320;
//This makes the scrollView scroll to the desired position
[UIView animateWithDuration:1.5f animations:^{
[scrollView setContentOffset:CGPointMake(abc, 0) animated:NO];
}];
}