停止当前的 NSURLConnection

发布于 2024-12-01 16:01:03 字数 218 浏览 0 评论 0原文

目前,每当 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拥抱影子 2024-12-08 16:01:03

为该 NSURLConnection 添加一个属性,并在开始新连接之前执行以下操作:

[self.conn cancel];
self.conn = nil;

Add a property for that NSURLConnection and before starting new connection, do:

[self.conn cancel];
self.conn = nil;
小ぇ时光︴ 2024-12-08 16:01:03

您可以尝试使用异步请求。用于此类调用的一个很好的库是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文