Hi my application works fine but when i checked on leaks it show some leakage which i cant understand i am noob so struggling with memory management following is code:
NSString *urlStr = [NSString stringWithFormat:@"http://webservices.xxx.com?clubid=%@",cid];
NSURL *url = [[NSURL alloc] initWithString:urlStr];
NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithContentsOfURL:url]; // Here is memory leakage 512 bytes responsible //frame allocateCollectableUnscanedstorage
[url release];
woDataController *parser = [[woDataController alloc] initXMLPars];
//Set delegate
[xmlParser setDelegate

arser];
[xmlParser parse];
[xmlParser release];
[parser release];
I am following this tutorial
http://www.iphonesdkarticles.com/2008/11/parsing-xml-files.html