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