有一個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];