向用户显示他处于离线模式的最佳方式是什么? Apple是否提供了类似工具栏图标的内容或者最佳实践?
答案 0 :(得分:1)
只需使用警报视图,并在消息中通知用户他没有可用的互联网。
示例:
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];
我不确定这是不是你的目标,但这是一个建议。