Apple 工程师建议完全依赖 Rechability。
来自SO 帖子(blockquote 的来源)
On a WWDC talk this year the Apple engineer on stage recommended users to never base
the application internet access on the Reachability example app status. Often
reachability doesn't provide a complete information (it is based on a complex mechanism)
and the suggestion provided by the engineer was this:
1. try to do your internet connection, whatever it is the Reachability status;
then set your UI hint based on success/fail result
2. if it fails due to networking issue, then register to Reachability and retry again
when Reachability gives the green light; this is needed when you want to recover
automatically from the fail condition
3. in any case give the user the possibility to "force a retry", whatever is the
Reachability status. If it succeeds, reset your UI hint immediately.
我做了什么 ?
例如,每次我需要建立连接时
NSData* data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[NSString
stringWithFormat:@"http://myadress.com"]]];
[self performSelectorOnMainThread:@selector(responseHandler:)
withObject:data waitUntilDone:TRUE];
- (void)responseHandler:(NSData *)responseData {
if(!responseData) {
ReachabilityController *reachability = [[ReachabilityController alloc] init];
[reachability checkReachability];
return;
}
// you handle your data
}
那里发生的事情是,只有在连接失败时才会测试可达性。我制作了一个通用的 ReachabilityController,它只处理可达性。我这样做了,这样我每次发出请求时都可以从所有其他控制器发出呼叫。
我的 ReachabilityController.m 看起来像
-(void) checkReachability {
Reachability* internetAvailable = [Reachability reachabilityForInternetConnection];
NetworkStatus netStatus = [internetAvailable currentReachabilityStatus];
NSString *messageText;
if (netStatus == NotReachable)
{
messageText = [NSString stringWithFormat:@"Internet access not available"];
}
else
{
Reachability *netReach = [Reachability reachabilityWithHostName:host];
NetworkStatus hostStatus = [netReach currentReachabilityStatus];
if (hostStatus == NotReachable)
{
messageText = [NSString stringWithFormat:@"Host Unreachable"];
}
else
{
messageText = [NSString stringWithFormat:@"Problem with remote service"];
}
}
NSLog(@"%@", messageText);
}
它不会使您的应用程序崩溃,因为您自己处理“nil”数据参数并最终确定原因。
希望这可以帮助!
更新:
如果您显示有关 Internet 连接的虚假消息,Apple 可能会拒绝您的应用程序。他们非常重视自己在 iphone 方面的声誉。如果互联网连接可用,但如果您的应用程序报告互联网连接不可用,将被视为非常严重