I'm following the official Apple sample
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