
Hi,
In my application following error is coming:
class NSCFString autoreleased with no pool in place - just leaking
What is the solution?
Thanks

Hi,
If you are running your thread then put your code between NSAutoreleasePool object as shown below:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; *** Your code here *** [pool release];
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.