Thank you everyone with all of your sample code, it is appreciated.
I have tried to implement all of the sample code in this thread but I keep getting memory leaks. I have tried to catch them all but to no success.
It looks like the below line is one that Instruments says it has a leak even when released.
Code:
NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:url];
... more code here
[parser release];
As anyone here been able to use these sample code without any memory leaks? Is so can you share how you fixed them?
Thank you so much.