hi friends.. i got the memory leak in following code segment when i ran my app with instrument..
-(void)connectionDidFinishLoading:conn{
//[self.conn release];
NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithData:myData];
[xmlParser setDelegate:self];
[xmlParser parse];
[xmlParser release];
}
but i couldnt make out exactly where leak is happening.. Any suggestions