Quick question: On the method
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
from the NSURLConnectionDataDelegate, if I don’t append the data given by the method on my NSData, will it be lost? or does the connection save it somewhere as well?
No, it’s not saved anywhere. If you want to keep it, you must do so yourself.