Hi!
I have followed the example at this
link but have a few questions that I can't seem to figure out on my own:
1. Can you please explain how to get the tag value in the connectionDidFinishLoading: method so that I can do different things with the data based on the tag? E.G.
Code:
if (connection.tag == @"tag1"){
write file to documents directory;
}
2. Also, can example of how to write to a file in my Documents directory using the data from these methods?
Many thanks in advance!