我正在调用一个返回JSON字符串作为响应的URL。我已经使用NSURLConnection与同步调用,但我的问题是我能够有时得到结果,有时我得到零值作为响应。任何人都可以告诉我在下面的代码中我错误的地方。
我以前用来调用网址的代码在下面,
NSURL *urlString=[NSURL URLWithString:request];
NSURLRequest *urlReq=[[NSURLRequest alloc] initWithURL:urlString];
NSURLResponse *response=nil;
NSError *errorVal=nil;
NSData *responseData=[NSURLConnection sendSynchronousRequest:urlReq returningResponse:&response error:&errorVal];
任何人都可以在我错误的地方帮助我。
提前致谢。