Does NSURLConnection automatically send messages to the class that initialized it or how does it work because I did not reference it in my header file.
Does NSURLConnection automatically send messages to the class that initialized it or how does
Share
No, you need to specify the delegate, as in this example from the URL Loading System Guide
(note the
delegate:selfpart).