使用NSURLConnection返回数据的正确方法是什么?

时间:2011-02-16 01:33:51

标签: objective-c nsurlconnection nsdata

以下两个代码段之间有什么区别?当我使用第一个片段时,请求通过,但数据保存0个字节,而在第二种情况下我获取数据。我知道第二个片段有效,但为什么?我在这里使用同步电话。

这个返回0字节的数据......

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

这个返回正确的数据......

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

1 个答案:

答案 0 :(得分:0)

这两个陈述之间没有区别。你绝对确定没有其他修改吗?