Hello,
I'm trying to do two NSURLRequests after each other. The second request is based on the results from the first one. My first request is working fine. I have set the delegate to self and I'm informed when when the request is finished (in the connectionDidFinishLoading method).
My question is now, how can I do the second request and be informed when it's done? Do I have to create a second delegate which handles my request or is there any other/better way to handle this?
Thanks for help.