如何使用 -(void)requestFailed:(ASIHTTPRequest *)request
我想使用 - (void)requestFailed:(ASIHTTPRequest *)request 来提醒用户网络出现错误(无法连接到网络)我如何恢复错误并实现此方法,
谢谢
i want to use - (void)requestFailed:(ASIHTTPRequest *)request, to alert user that there is an error with the network ( it can not connect to the network) how i can recuper the error and implement this method,
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要实现此方法,您的类应该是您的请求的委托:
然后,如果请求失败,将自动调用该方法
To implement this method, your classe should be the delegate of your request :
Then the method will automatically be called if the request failed
您可以设置 ASIHTTPRequest 的委托,这样
您就可以使用此方法。
You can set the delegate of ASIHTTPRequest by
which will enable you to use this method.
如果发生错误,您可以使用 uialertView 简单地打印警报
谢谢
you can simply print the alert if error occurs using uialertView
thanks