不同时间间隔读取nsmutablearray

有一个read nsmutablearray,本来是每两秒逐条读取,并且更新textView。现在需要在不同的时间间隔逐条读取,不是每两秒了,应该怎么实现?

- (void)viewDidLoad{
myArray = [[NSMutableArray alloc]initWithObjects:@"String1",@"String2",@"String3",@"String4", @"String5",..... nil];  

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


- (void)updateText:(NSTimer *)theTimer 
    {


        if (index < [myArray count])
        {
            myTextView.text = [myArray objectAtIndex:index];
            index++;
        }
        else
            index = 0;
        }
}

谢谢。

如果你只是需要改变一下间隔时间,可以用随机数字来决定时间,例子中的随机数是2到10之间的。

[NSTimer scheduledTimerWithTimeInterval:arc4random() % 10 + 2
                             target:self
                           selector:@selector(updateText:)
                           userInfo:nil
                            repeats:YES];