What is the correct point at which to release a NSUrlConnection object?
In my program, I alloc a NSUrlConnection, and then initWithRequest to kick off asynchronously.
I am now responsible for releasing the object – when do I/can I release? Immediately if I’m not using it again?
Your usage of the NSUrlConnection can be released immediately.
The framework will release when it has finished with it.