停止当前的 NSURLConnection
目前,每当 mySearchBar.text
发生变化时,我都会创建一个 NSURLConnection
。我遇到一个问题,如果用户输入文本太快,respondData
就会损坏。
所以,我想知道是否有办法检查相同的 NSURLConnection
是否仍在加载?如果是,如何断开当前连接并启动新连接?
Currently, I am making an NSURLConnection
whenever mySearchBar.text
did change. I am experiencing an issue whereby if the user enters text too quickly, The respondData
gets corrupted.
So, I was wondering is there a way to check whether the same NSURLConnection
is still loading? If yes, How do I drop the current connection and start a new one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为该 NSURLConnection 添加一个属性,并在开始新连接之前执行以下操作:
Add a property for that NSURLConnection and before starting new connection, do:
您可以尝试使用异步请求。用于此类调用的一个很好的库是 ASIHTTPRequest。
每当您需要发出另一个新请求时,请设置
[request cancel];
。You could try to use asynchronous request. A good library for such call is ASIHTTPRequest.
set
[request cancel];
whenever you need to make another new request.