我正在使用Reachability
类来检查我的tvOS应用程序中的网络是否可用。
当我尝试通知kReachabilityChangedNotification
时,它没有调用该方法。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNetworkChange:) name:kReachabilityChangedNotification object:nil];
未调用方法handleNetworkChange
。
你真的发布了通知吗?
[[NSNotificationCenter defaultCenter] postNotificationName:kReachabilityChangedNotification object:nil];