I have done xml parsing same as SeismicXML example. But now it gives me memory leak problem.
When i tested SeismicXML with instruments, it also give same memory leak.
Before I initialize my NSXMLParser I set the following:
[[NSURLCache sharedURLCache] setMemoryCapacity:0]; [[NSURLCache sharedURLCache] setDiskCapacity:0]; NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:URL];
This stops leaking.