Memory Leak NSInvocationOperation

34 Views Asked by At

What is possible reason of memory leak in following code snippet?

NSInvocationOperation* theOp = [[NSInvocationOperation alloc] 
                                initWithTarget:self 
                                selector:@selector(methodCall:) object:Nil];

[operationQueue addOperation:theOp];
[theOp release];
0

There are 0 best solutions below