我创建了如下请求,
NSURLResponse *response;
NSError *error;
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:JsonURL];
[request setTimeoutInterval:10];
[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
但是这里超时间隔不起作用,我在堆栈上检查了一些问题,有人说默认时间是75秒,有人说是240秒,我在这里很困惑..
请帮助我。