除了使用初始化程序之外,如何在 10 秒后停止 NSURLRequest 超时?
Posted
技术标签:
【中文标题】除了使用初始化程序之外,如何在 10 秒后停止 NSURLRequest 超时?【英文标题】:How do I stop NSURLRequest from timeout after 10 seconds, other than using initialiser? 【发布时间】:2015-07-25 13:09:19 【问题描述】:我创建了一个 NSURLRequest 来通过 TwitterKit API 访问 Twitter 用户流,如下所示:
let request = Twitter.sharedInstance().APIClient.URLRequestWithMethod(
"GET",
URL: "https://userstream.twitter.com/1.1/user.json",
parameters: parameters,
error: &error)
这意味着我不能使用通常的初始化程序,并且可以访问超时间隔。所以超时时间设置为默认10秒,初始化后为只读。
当我像这样开始连接时:
self.urlConnection = NSURLConnection(request: request, delegate: self, startImmediately: false)
self.urlConnection!.start()
我在前 10 秒通过委托方法获得结果,然后它就中断了。
我现在解决这个问题的方法是在每次连接中断时重新启动连接,但这绝不是理想的,并且显然存在丢失停机期间任何数据的风险。
如果我尝试这个,我只会得到一个错误:
Twitter.sharedInstance().APIClient.sendTwitterRequest(request, completion:
(response: NSURLResponse?, data: NSData?, error: NSError?) -> Void in
)
它返回一个空响应和数据,错误为The request timed out.
如何在不超过 10 秒的 URL 请求超时的情况下获得此流式响应?
【问题讨论】:
【参考方案1】:我不熟悉 Twitter API,但如果该方法返回
NSURLRequest
然后你可以制作一个可变副本并修改它:
let request = Twitter.sharedInstance().APIClient.URLRequestWithMethod(...)
let newRequest = request.mutableCopy() as! NSMutableURLRequest
newRequest.timeoutInterval = ...
【讨论】:
以上是关于除了使用初始化程序之外,如何在 10 秒后停止 NSURLRequest 超时?的主要内容,如果未能解决你的问题,请参考以下文章
在 Python 中,如何执行 .exe 文件并在 n 秒后停止它? [复制]
如果没有得到响应,如何在 30 秒后停止 ajax 调用? [复制]