Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the difference between the following two code snippets? When I use the first snippet, the requests goes through but data holds 0 bytes, where as in the second case I do get the data. I know the second snippet works but why? I am using synchronous call here.

This one returns 0 bytes of data...

NSData *data  = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:&response error:&error];

This one returns correct data...

NSData *data ;
data = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:&response error:&error];
share|improve this question

1 Answer

There's no difference between these two statements. Are you absolutely sure that there's no other modification?

share|improve this answer
no other modifications, just change the first to second my app works. – user618886 Feb 16 '11 at 17:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.