Hi, I'm following the official Apple sample http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html
While examining my code with Instruments I found a leak, caused by the non released NSURLRequest. I've now included a [request release] shortly after NSURLConnection *conn=[[NSURLConnection alloc] initWithRequest:request delegate:self];
and it seems to work. Am I right?
Regards