What is possible reason of memory leak in following code snippet, is it forming some kind of Cycles
Code Block NSInvocationOperation* theOp = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(methodCall:) object:Nil]; [operationQueue addOperation:theOp]; [theOp release];