Jake Behrens |
I'm a Software Engineer. I help developers make amazing software. |
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
NSInvocationOperation *op = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(parseXML) object:nil];
[queue addOperation:op];
[op release];