Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iphone: performSelector: withObject: afterDelay: does not work with a background thread?

I want to run a method in a background thread, the first method will run another method on the same (background) thread after some seconds. I wrote this:

- (IBAction)lauch:(id)sender
{
    [self performSelectorInBackground:@selector(first) withObject:nil];

}
-(void) second {
    printf("second\n");
}
-(void) first {
    NSAutoreleasePool *apool = [[NSAutoreleasePool alloc] init];
    printf("first\n");

    [self performSelector:@selector(second) withObject:nil afterDelay:3];

    printf("ok\n");
    [apool release];
}

but the second method is never called, why? and, how may i accomplish my goal?

thanks

like image 718
subzero Avatar asked Aug 31 '10 23:08

subzero


1 Answers

You have to have a running run loop for performSelector:withObject:afterDelay: to work.


Your code executes first and, when first exits, the thread is gone. You need to run a run loop.

Add:

[[NSRunLoop currentRunLoop] run];

To the end of first.

like image 141
bbum Avatar answered Oct 10 '22 06:10

bbum