gpt4 book ai didi

iphone - iOS同步下载过程中的超时间隔?

转载 作者:行者123 更新时间:2023-11-29 04:25:01 24 4
gpt4 key购买 nike

我创建了如下请求,

NSURLResponse *response;
NSError *error;

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:JsonURL];
[request setTimeoutInterval:10];

[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

但是这里超时间隔不起作用,我检查了堆栈上的一些问题,有些说默认超时是 75 秒,有些说是 240 秒,我在这里很困惑..

请帮我解决这个问题。

最佳答案

您正在使用同步连接。因此,将不会调用代理。如果您仍然想使用同步 URL 请求,我会推荐以下内容:

[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

if (nil == response) {
if (error)
NSLog(@"Connection failed! Error - %@ %@",
[error localizedDescription],
[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);
}
}

如果您想使用委托(delegate)方法,则必须使用异步请求。

请检查URL Loading System Programming Guide也是。

关于iphone - iOS同步下载过程中的超时间隔?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12445066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com