无法连接错误消息 - iPhone

发布于 2024-11-29 00:24:07 字数 281 浏览 1 评论 0原文

我有一个 iPhone 应用程序,它严重依赖于与外部服务器的通信。当无法建立与服务器的连接或连接丢失时,如何抛出错误消息?我有两个连接,一个是 HTML Post,另一个是使用 NSStream 的套接字流。

一点背景知识 - 应用程序通过 HTML Post 与服务器通信,然后通过套接字流与本地 wifi 设备通信,然后通过 Post 返回到服务器,然后通过套接字流返回到设备。

通讯

I have an iPhone application that relies heavily on communicating with an external server. How can I throw an error message when the connection to the server cannot be made or the connection is lost? I have two connections, one is a HTML Post and the other is a socket stream using NSStream.

A little bit of background - the application communicates to the server via HTML Post, then communicates with a local wifi device via socket stream, then back to the server via Post, then back to the device via socket stream.

Communication

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

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

发布评论

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

评论(2

人疚 2024-12-06 00:24:07

我不确定您是否想要检测错误,或者您只是想在检测到错误时通知用户。如果是后者,请查看 UIAlert 类,您可以使用它向用户发布对话框类型的视图。如果是前者,http 处理和 NSStream 都会返回错误 - 只需在代码中检查它们,然后放置 UIAlert。

I'm not sure if you're looking to detect an error, or if you just want to notify the user if you do. If it is the latter, look at the UIAlert class, which you can use to post up a dialog-type view to the user. If the former, both http processing and NSStream have error returns - just check them in your code, and put up the UIAlert.

心凉 2024-12-06 00:24:07

Apple 文档 有一个使用 NSAlert。尽管您没有为特定推荐提供足够的信息,但您可以对 URL 连接流执行类似的操作。

The Apple documentation has an example of displaying stream errors using an NSAlert. You can do something similar for your URL connection stream, though you did not provide enough information for a specific recommendation.

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