显示离线模式

发布于 2024-12-04 00:38:55 字数 62 浏览 0 评论 0原文

向用户显示他处于离线模式的最佳方式是什么? Apple 是否提供诸如工具栏图标之类的东西,或者最佳实践是什么?

What is the best way to show a user that he is in offline mode? Does Apple provide anything like a toolbar icon or what would be the best practice on that?

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

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

发布评论

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

评论(1

执笔绘流年 2024-12-11 00:38:55

只需使用带有消息的警报视图,通知用户他没有可用的互联网。

示例:

  UIAlertView *someError = [[UIAlertView alloc] initWithTitle: @"Network error" 
                                                message: @"Error sending 
                                                         your info to the server"  
                                                delegate: self 
                                                cancelButtonTitle: @"Ok" 
                                                otherButtonTitles: nil];



  [someError show];

  [someError release];

我不确定这是否是您的目标,但这是一个建议。

Just use an alertview with a message notifying the user that he has no internet available.

Example:

  UIAlertView *someError = [[UIAlertView alloc] initWithTitle: @"Network error" 
                                                message: @"Error sending 
                                                         your info to the server"  
                                                delegate: self 
                                                cancelButtonTitle: @"Ok" 
                                                otherButtonTitles: nil];



  [someError show];

  [someError release];

I'm not sure if this is what you aim for but it is a suggestion.

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