重要提示:此检查应始终异步执行。以下大多数答案是同步的,因此请小心,否则将冻结您的应用程序。
迅速
1)通过CocoaPods或迦太基安装:https : //github.com/ashleymills/Reachability.swift
2)通过闭包测试可达性
let reachability = Reachability()!
reachability.whenReachable = { reachability in
if reachability.connection == .wifi {
print("Reachable via WiFi")
} else {
print("Reachable via Cellular")
}
}
reachability.whenUnreachable = { _ in
print("Not reachable")
}
do {
try reachability.startNotifier()
} catch {
print("Unable to start notifier")
}
目标C
1)将SystemConfiguration
框架添加到项目中,但不必担心在任何地方包含框架
2)将Tony Million的Reachability.h
和版本添加Reachability.m
到项目中(可在此处找到:https : //github.com/tonymillion/Reachability)
3)更新界面部分
#import "Reachability.h"
// Add this to the interface in the .m file of your view controller
@interface MyViewController ()
{
Reachability *internetReachableFoo;
}
@end
4)然后在您可以调用的视图控制器的.m文件中实现此方法
// Checks if we have an internet connection or not
- (void)testInternetConnection
{
internetReachableFoo = [Reachability reachabilityWithHostname:@"www.google.com"];
// Internet is reachable
internetReachableFoo.reachableBlock = ^(Reachability*reach)
{
// Update the UI on the main thread
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"Yayyy, we have the interwebs!");
});
};
// Internet is not reachable
internetReachableFoo.unreachableBlock = ^(Reachability*reach)
{
// Update the UI on the main thread
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"Someone broke the internet :(");
});
};
[internetReachableFoo startNotifier];
}
重要提示:本Reachability
类是最常用的类别中的一个项目,所以你可能会遇到的命名与其他项目冲突。如果发生这种情况,则必须将一对Reachability.h
和Reachability.m
文件中的一个重命名为其他名称才能解决该问题。
注意:您使用的域无关紧要。它只是在测试通往任何域的网关。
return (BOOL)URLString;
,或者甚至更好,return !!URLString
或者return URLString != nil