I am trying to create a simple NSURLConnection to communicate with a server using a GET request. Connection works well, but delegates methods of NSURLConnection are never ca
Are you calling this on a background thread? If you are performing this on a background thread, the thread is probably exiting before the delegates can be called.