向用户显示他处于离线模式的最佳方式是什么?Apple 是否提供工具栏图标之类的东西,或者最好的做法是什么?
问问题
330 次
1 回答
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];
我不确定这是否是您的目标,但这是一个建议。
于 2011-09-12T08:24:38.743 回答