ASIHTTPRequest 可达性如何
尽管我很喜欢 ASIHTTPRequest,但它没有在任何地方记录如何使用修改后的 Reachability 类,而且我在 stackoverflow 或任何示例项目上都找不到它。
目前我在这一点上:
Reachability *reach = [Reachability reachabilityWithHostName:@"http://google.com"];
[reach startNotifier];
if ([reach isReachable]) {
NSLog(@"connection");
}else{
NSLog(@"no connection");
}
这似乎不起作用。
As much as I like ASIHTTPRequest, it isn't documented anywhere how to use the modified the Reachability class, and I couldnt find it on stackoverflow, or any sample projects either.
Currently im at this point:
Reachability *reach = [Reachability reachabilityWithHostName:@"http://google.com"];
[reach startNotifier];
if ([reach isReachable]) {
NSLog(@"connection");
}else{
NSLog(@"no connection");
}
Which doesn't seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要为此设置一个通知处理程序:
然后,像这样实现处理程序:
此外,当您不需要知道事情何时发生变化时,请将自己作为观察者删除:
You need to set up a notification handler for this:
Then, implement the handler like so:
Also, when you don't need to know when things change, remove yourself as an observer:
}
,请进行这些更改,然后代码就会像魅力一样工作:)
}
, Please make these changes then code gonna work like a charm :)