lab12
lab12

Reputation: 6448

How to Loop NSThread?

I am curious to know if you can loop an NSThread for the iphone sdk. I have learned that instead of using NSTimers which do run off of the main UI, I can use NSThreads to run actions in the background. Most of my NSTimers have the "repeats:" to YES, thus I need to know if NSThreads can be looped.

Thanks Kevin

Upvotes: 1

Views: 1148

Answers (1)

zoul
zoul

Reputation: 104065

- (void) loop {
    while (!finished) { … };
}

- (void) startThreadedLoop {
    finished = NO;
    [self performSelectorInBackground:@selector(loop)];
}

Upvotes: 1

Related Questions