确定我的ipad的wifi连接有多好

时间:2013-09-21 17:01:51

标签: ios objective-c ipad wifi

我正在编写一个使用wifi传输数据的iPad应用。我使用以下内容确定是否存在互联网连接:

- (BOOL)connectedToInternet
{
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL: [NSURL URLWithString:@"http://www.google.com/"]];
[request setHTTPMethod:@"HEAD"];
NSHTTPURLResponse *response;
[NSURLConnection sendSynchronousRequest:request returningResponse:&response error: NULL];
return ([response statusCode] == 200) ? YES : NO;
}

有没有办法帮助我找到我的ipad的wifi连接有多好?

1 个答案:

答案 0 :(得分:0)

为什么不使用Reachability课程?通过Wi-Fi或3G获取有关互联网连接的信息是一个很好的功能。您无法检测到连接的质量,但检测连接状态的方法很少。 查看this来源。