Reputation: 3389
I am not sure how should i get corresponding URLConnection response data , if i use more than one URLConnection. Please help me out, i need to use more than one URLConnection?
Regards Sri
Upvotes: 0
Views: 204
Reputation: 25632
Every callback you get has the URLConnection as its first parameter, for example
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
So you always know what connection the data belongs to.
Upvotes: 1