我有一个通知中心小工具,其中包含一些仅在连接到Wi-Fi网络时才有效的UISwitch。
我尝试使用Reachability(在普通的应用代码中运行),就像这样
#import "Reachability.h"
Reachability *reachability = [Reachability reachabilityForInternetConnection];
[reachability startNotifier];
NetworkStatus status = [reachability currentReachabilityStatus];
if(status == NotReachable) {
switch.enabled = NO;
} else if (status == ReachableViaWiFi) {
} else if (status == ReachableViaWWAN) {
switch.enabled = NO;
}
但我得到了这些错误