iPhone - NSThread 和 NSURLConnection 的问题

发布于 2024-10-12 08:38:34 字数 352 浏览 5 评论 0原文

在我的 iPhone 应用程序中,我正在创建 NSThread 并运行一些代码。在同一个线程中,我正在使用 NSURLConnection 并尝试从服务器获取一些数据。我实现了与连接相关的所有委托。在线程中,我还有以下代码来等待从服务器获取数据的完成:

while (threadFinished == NO) {
    [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]; 
}

但它会立即崩溃到上面代码的下一行。它只是说 EXC_BAD_ACCESS。 有人可以指导我解决这个问题吗?

In my iphone application, i'm creating NSThread and running some code. In the same thread, I'm using NSURLConnection and trying to get some data from server. I implemented all the delegates related to connection. In the thread i also had the following code to wait for completion of getting data from server:

while (threadFinished == NO) {
    [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]; 
}

But its crashing immediate next line to above code. Its just saying EXC_BAD_ACCESS.
Can some one guide me infixing the issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文