2

In the example in the Xcode Documentation : URL Loading System Programming Guide : Using NSURLConnection, they alloc an NSURLConnection (theConnection) and then release it in the callbacks: -connection:didFailWithError: & -connectionDidFinishLoading:. But, won't theConnection leak (i.e. never get released) if the delegate is released before either of the callback methods get called?

ma11hew28
  • 121,420
  • 116
  • 450
  • 651

1 Answers1

4

No, theConnection won't leak because, as the Xcode Documentation for -[NSURLConnection initWithRequest:delegate:] states under Special Considerations: "The connection retains delegate. It releases delegate when the connection finishes loading, fails, or is canceled."

ma11hew28
  • 121,420
  • 116
  • 450
  • 651