I am new to iPhone development and I would like to ask a question concerning asynchronous events.
Supposing I have a NSURLConnection and the correspoding delegate methods ie. didReceiveResponse, didFailWithError etc. The methods are called asynchronously when events are fired. Are all methods executed on the main thread? Or does the iOS create separate threads that execute the corresponding method code?
I am facing some random crashes to my app, and I guess that it is a synchronization issue.