程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-不同時間間隔讀取nsmutablearray

ios-不同時間間隔讀取nsmutablearray

編輯:編程綜合問答
不同時間間隔讀取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];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved