0

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];
        }];
}
4

1 に答える 1

2

まず、NSTimerにivarを追加します

{
    NSTimer *timer;
}

timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(onTimer) userInfo:nil repeats:YES];

その後、onTimer

- (void) onTimer {
    //Create a static int
    static int repetition = 0;
    repetition ++;
    if(repetition == 4)
    {
       repetition = 0;
       //Stop the timer
       [timer invalidate];
    }

    // 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];


    }];
}
于 2012-11-07T18:56:01.360 に答える