错误通知

时间:2011-11-23 14:35:23

标签: iphone objective-c xcode

我有refresh button,当我按下refreshes我的xml文件并将其放入tableview时,我想要的是,当我没有连接到我的xml文件时,我希望它向我展示一个告诉我服务器没有连接的弹出窗口。

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"No Connection" delegate:refreshButton cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
希望你能帮忙

任何想法如何?

1 个答案:

答案 0 :(得分:0)

检查您的http请求中的返回代码。如果它是代表无网络连接的代码,则可以显示警报视图。

如果您尚未使用,我建议使用ASIHTTPRequest。它允许您设置在请求未成功完成时执行的故障块。