-1

私はxmlファイルを解析するためのプログラムを書いています。ファイルを継続的に読み取る必要があります。つまり、実行時にxmlファイルに変更が発生した場合は、シミュレーターにも表示する必要があります

 NSThread *myThread =[[NSThread alloc]initWithTarget:self selector:@selector(doParsing) object:nil];
    [myThread start];

xmlファイルを呼び出しますが、変更が表示されません。どうすればそれを達成できますか

4

1 に答える 1

2

おそらく次のようなものです:

NSThread *myThread =[[NSThread alloc]initWithTarget:self selector:@selector(callTimer) object:nil];
[myThread start];

- (void)callTimer
{
   [NSTimer scheduledTimerWithTimeInterval:10.0
    target:self
    selector:@selector(doParsing)
    userInfo:nil
    repeats:YES];
}

- (void)doParsing
{
   //Do the stuff here
}
于 2013-03-18T06:22:04.937 に答える